This commit is contained in:
Kathy Ruffing 2008-10-03 11:38:42 +00:00
parent 90a4ca821f
commit 8ee42265ce

View File

@ -46,8 +46,28 @@ namespace Volian.Controls.Library
private StepItem _MyNextStepItem = null;
private bool _ChildrenLoaded = false;
private List<StepItem> _MyBeforeStepItems;
public List<StepItem> MyBeforeStepItems
{
get { return _MyBeforeStepItems; }
set { _MyBeforeStepItems = value; }
}
private List<StepItem> _MyAfterStepItems;
public List<StepItem> MyAfterStepItems
{
get { return _MyAfterStepItems; }
set { _MyAfterStepItems = value; }
}
private List<StepItem> _MyRNOStepItems;
public List<StepItem> MyRNOStepItems
{
get { return _MyRNOStepItems; }
set { _MyRNOStepItems = value; }
}
public Label MyLabel
{ get { return lblTab; } }
private StepSectionLayoutData _MyStepSectionLayoutData;
private bool _Loading = true;
private StepData _MyStepData;