Initial overhaul work
This commit is contained in:
parent
523710ce25
commit
e2c6816d45
5 changed files with 93 additions and 30 deletions
|
|
@ -23,11 +23,26 @@ namespace Observatory.Framework
|
|||
public object UI;
|
||||
|
||||
/// <summary>
|
||||
/// <para>Collection bound to DataGrid used byu plugins with UIType.Basic.</para>
|
||||
/// <para>Collection bound to DataGrid used by plugins with UIType.Basic.</para>
|
||||
/// <para>Objects in collection should be of a class defined within the plugin consisting of string properties.<br/>Each object is a single row, and the property names are used as column headers.</para>
|
||||
/// </summary>
|
||||
public ObservableCollection<object> DataGrid;
|
||||
|
||||
/// <summary>
|
||||
/// <para>Collection bound to DataGrid headers used by plugins with UIType.Basic.</para>
|
||||
/// </summary>
|
||||
public ObservableCollection<string> Headers;
|
||||
|
||||
/// <summary>
|
||||
/// <para>Collection used to specify formatting of items in respective columns.</para>
|
||||
/// </summary>
|
||||
public ObservableCollection<string> Formats;
|
||||
|
||||
/// <summary>
|
||||
/// <para>Two-dimensional collection of items to display in UI grid.</para>
|
||||
/// </summary>
|
||||
public ObservableCollection<ObservableCollection<object>> Items;
|
||||
|
||||
/// <summary>
|
||||
/// Instantiate PluginUI of UIType.Basic.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Reference in a new issue