Added checkboxes for Placekeepers and Phonelist
Supporting logic to save/retrieve Placekeeper and Phonelist information Supporting logic to save/retrieve Placekeeper information Added Placekeeper logic Null reference fix Logic to get PrintPhoneList flag Rearranged the panel and added Placekeeper checkbox
This commit is contained in:
@@ -136,6 +136,29 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
}
|
||||
//[Category("Step Attributes")]
|
||||
//[DisplayName("Step Placekeeper")]
|
||||
//[RefreshProperties(RefreshProperties.All)]
|
||||
//[Description("Step Placekeeper")]
|
||||
public bool Step_Placekeeper
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "Placekeeper"];
|
||||
|
||||
//If there is no value to get, then get the parent value (a.k.a. default value).
|
||||
if (s == string.Empty) return false;
|
||||
if (s == "True") return true;
|
||||
return false;
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "Placekeeper"];
|
||||
if (value.ToString() == s) return;
|
||||
_Xp["Step", "Placekeeper"] = value.ToString();
|
||||
OnPropertyChanged("Step_Placekeeper");
|
||||
}
|
||||
}
|
||||
//[Category("Step Attributes")]
|
||||
//[DisplayName("Step Check Off Index")]
|
||||
//[RefreshProperties(RefreshProperties.All)]
|
||||
//[Description("Step Check Off Index")]
|
||||
|
Reference in New Issue
Block a user