This commit is contained in:
parent
31fb66002a
commit
b30b216e5a
@ -84,6 +84,35 @@ namespace VEPROMS.CSLA.Library
|
||||
#endregion
|
||||
#region StepAttr
|
||||
//[Category("Step Attributes")]
|
||||
//[DisplayName("Step Floating Foldout Association")]
|
||||
//[RefreshProperties(RefreshProperties.All)]
|
||||
//[Description("Step Floating Foldout Association")]
|
||||
public int Step_FloatingFoldout
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "FloatingFoldout"];
|
||||
if (s == string.Empty) return 0;
|
||||
int tst = 0;
|
||||
try
|
||||
{
|
||||
tst = int.Parse(s);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return int.Parse(s);
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "FloatingFoldout"];
|
||||
if (value.ToString() == s) return;
|
||||
_Xp["Step", "FloatingFoldout"] = value.ToString();
|
||||
OnPropertyChanged("Step_FloatingFoldout");
|
||||
}
|
||||
}
|
||||
//[Category("Step Attributes")]
|
||||
//[DisplayName("Step Continuous Action Summary")]
|
||||
//[RefreshProperties(RefreshProperties.All)]
|
||||
//[Description("Step Continuous Action Summary")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user