Added timing logic
Changed menu text Support Procedure and ProcedureInfo Added ChangeBar support Fixed Ancestor Inheritance
This commit is contained in:
@@ -173,6 +173,25 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Step_CBOverride");
|
||||
}
|
||||
}
|
||||
public string Step_MultipleChangeID
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "MultipleChangeID"];
|
||||
|
||||
if (s == string.Empty) return null;
|
||||
return s;
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "MultipleChangeID"];
|
||||
|
||||
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");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user