Add generic category window to WPF library

This commit is contained in:
2015-11-10 20:28:58 -05:00
parent 8e24cd0b12
commit f7ddae093e
5 changed files with 216 additions and 0 deletions

27
Windows/CategoryPanel.cs Normal file
View File

@@ -0,0 +1,27 @@
using System;
using System.Windows.Controls;
namespace Common.Wpf.Windows
{
public class CategoryPanel : UserControl
{
private object Data { get; 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;
}
}