1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-09-09 03:00:39 -05:00

Menu progress

This commit is contained in:
Jordan Wages 2018-07-04 19:46:33 -05:00
commit 0ffd5c401b
7 changed files with 142 additions and 20 deletions

View file

@ -21,6 +21,8 @@ namespace butterflow_ui
private decimal value;
/// <summary> True if the subregion runs to the end, false if not. </summary>
private bool toEnd;
/// <summary> A unique identifier used to locate this subregion withing a subregion collection. </summary>
private Guid identifier = new Guid();
#endregion
@ -100,6 +102,16 @@ namespace butterflow_ui
OnPropertyChanged();
}
}
/// <summary> Gets a unique identifier used to locate this subregion withing a subregion collection. </summary>
/// <value> The unique identifier. </value>
public Guid Identifier
{
get
{
return this.identifier;
}
}
#endregion
}