Add generic TreeView class

This commit is contained in:
2020-02-27 17:15:51 +01:00
parent 64cdaf8e9f
commit 224a5e07df
6 changed files with 188 additions and 74 deletions

View File

@@ -0,0 +1,16 @@
namespace EstusShots.Gtk.Controls
{
public class DataColumn
{
public string PropertyName { get; set; }
public string Title { get; set; }
public DataColumn() { }
public DataColumn(string propertyName)
{
PropertyName = propertyName;
}
}
}