This commit is contained in:
parent
90a4ca821f
commit
8ee42265ce
@ -46,8 +46,28 @@ namespace Volian.Controls.Library
|
|||||||
private StepItem _MyNextStepItem = null;
|
private StepItem _MyNextStepItem = null;
|
||||||
private bool _ChildrenLoaded = false;
|
private bool _ChildrenLoaded = false;
|
||||||
private List<StepItem> _MyBeforeStepItems;
|
private List<StepItem> _MyBeforeStepItems;
|
||||||
|
|
||||||
|
public List<StepItem> MyBeforeStepItems
|
||||||
|
{
|
||||||
|
get { return _MyBeforeStepItems; }
|
||||||
|
set { _MyBeforeStepItems = value; }
|
||||||
|
}
|
||||||
private List<StepItem> _MyAfterStepItems;
|
private List<StepItem> _MyAfterStepItems;
|
||||||
|
|
||||||
|
public List<StepItem> MyAfterStepItems
|
||||||
|
{
|
||||||
|
get { return _MyAfterStepItems; }
|
||||||
|
set { _MyAfterStepItems = value; }
|
||||||
|
}
|
||||||
private List<StepItem> _MyRNOStepItems;
|
private List<StepItem> _MyRNOStepItems;
|
||||||
|
|
||||||
|
public List<StepItem> MyRNOStepItems
|
||||||
|
{
|
||||||
|
get { return _MyRNOStepItems; }
|
||||||
|
set { _MyRNOStepItems = value; }
|
||||||
|
}
|
||||||
|
public Label MyLabel
|
||||||
|
{ get { return lblTab; } }
|
||||||
private StepSectionLayoutData _MyStepSectionLayoutData;
|
private StepSectionLayoutData _MyStepSectionLayoutData;
|
||||||
private bool _Loading = true;
|
private bool _Loading = true;
|
||||||
private StepData _MyStepData;
|
private StepData _MyStepData;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user