mirror of
https://github.com/ckaczor/Common.Wpf.git
synced 2026-01-13 17:22:47 -05:00
28 lines
565 B
C#
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;
|
|
}
|
|
}
|