WCNTRN: Add Step Responsibility
WCNTRN: Added SectTop (for section number & continue message) WCNTRN: Added Responsibility textbox
This commit is contained in:
@@ -278,6 +278,25 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Step_ChangeID");
|
||||
}
|
||||
}
|
||||
public string Step_Responsibility
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "Responsibility"];
|
||||
|
||||
if (s == string.Empty) return null;
|
||||
return s;
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "Responsibility"];
|
||||
|
||||
if (value != null && value.ToString() == s) return;
|
||||
if (value == null && s != null) _Xp["Step", "Responsibility"] = null;
|
||||
else _Xp["Step", "Responsibility"] = value.ToString();
|
||||
OnPropertyChanged("Step_Responsibility");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region IItemConfig Members
|
||||
|
Reference in New Issue
Block a user