Files
Common.Wpf/Windows/CategoryPanel.cs

28 lines
565 B
C#

using System;
using System.Windows.Controls;
namespace Common.Wpf.Windows
{
public class CategoryPanel : UserControl
{
protected object Data { get; private set; }
public virtual void LoadPanel(object data)
{
Data = data;
}
public virtual bool ValidatePanel()
{
throw new NotImplementedException();
}
public virtual void SavePanel()
{
throw new NotImplementedException();
}
public virtual string CategoryName => null;
}
}