Add generic TreeView class
This commit is contained in:
16
EstusShots.Gtk/Controls/DataColumn.cs
Normal file
16
EstusShots.Gtk/Controls/DataColumn.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user