BGE: Change Id dialogue at program startup
BGE: Support for Change Id in step config BGE: change property name from MultipleChangeIds to ChangeIds
This commit is contained in:
@@ -255,23 +255,23 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Step_CBOverride");
|
||||
}
|
||||
}
|
||||
public string Step_MultipleChangeID
|
||||
public string Step_ChangeID
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "MultipleChangeID"];
|
||||
string s = _Xp["Step", "ChangeID"];
|
||||
|
||||
if (s == string.Empty) return null;
|
||||
return s;
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "MultipleChangeID"];
|
||||
string s = _Xp["Step", "ChangeID"];
|
||||
|
||||
if (value != null && value.ToString() == s) return;
|
||||
if (value == null && s != null) _Xp["Step", "MultipleChangeID"] = null;
|
||||
else _Xp["Step", "MultipleChangeID"] = value.ToString();
|
||||
OnPropertyChanged("Step_MultipleChangeID");
|
||||
if (value == null && s != null) _Xp["Step", "ChangeID"] = null;
|
||||
else _Xp["Step", "ChangeID"] = value.ToString();
|
||||
OnPropertyChanged("Step_ChangeID");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
Reference in New Issue
Block a user