Files
Proftaak-RH-B4/DokterApp/ITab.cs
fabjuuuh f777b583f5 progress
2020-09-30 14:37:40 +02:00

29 lines
538 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Input;
namespace DokterApp
{
public interface ITab
{
string Name { get; set; }
ICommand CloseCommand { get; }
event EventHandler CloseRequested;
}
public abstract class Tab : ITab
{
public string Name { get; set; }
public ICommand CloseCommand { get; }
public event EventHandler CloseRequested;
public Tab()
{
//CloseCommand =
}
}
}