WCNTRN: Add Step Responsibility
WCNTRN: Added SectTop (for section number & continue message) WCNTRN: Added Responsibility textbox
This commit is contained in:
@@ -333,6 +333,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return (_Layout == null ? _Layout = new Layout(SelectSingleNode("Layout")) : _Layout);
|
||||
}
|
||||
}
|
||||
private SectTop _SectTop;
|
||||
public SectTop SectTop
|
||||
{
|
||||
get
|
||||
{
|
||||
return (_SectTop == null ? _SectTop = new SectTop(SelectSingleNode("SectTop")) : _SectTop);
|
||||
}
|
||||
}
|
||||
private Continue _Continue;
|
||||
public Continue Continue
|
||||
{
|
||||
@@ -491,6 +499,53 @@ namespace VEPROMS.CSLA.Library
|
||||
#endregion
|
||||
}
|
||||
#endregion
|
||||
#region SectTop
|
||||
[TypeConverter(typeof(ExpandableObjectConverter))]
|
||||
public class SectTop : vlnFormatItem
|
||||
{
|
||||
public SectTop(XmlNode xmlNode) : base(xmlNode) { }
|
||||
public SectTop() : base() { }
|
||||
#region Font
|
||||
private VE_Font _Font;
|
||||
[Category("Font")]
|
||||
[DisplayName("Font")]
|
||||
[Description("Font")]
|
||||
public VE_Font Font
|
||||
{
|
||||
get
|
||||
{
|
||||
return (_Font == null) ? _Font = new VE_Font(XmlNode) : _Font;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region Margin
|
||||
private LazyLoad<float?> _Margin;
|
||||
[Category("Section Continue Msg")]
|
||||
[DisplayName("Margin for Section top msg")]
|
||||
[Description("Margin for Section top msg")]
|
||||
public float? Margin
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _Margin, "@Margin");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region Message
|
||||
private LazyLoad<string> _Message;
|
||||
[Category("Continue Msg")]
|
||||
[DisplayName("Section Top Continue Msg")]
|
||||
[Description("Section Top Continue Msg")]
|
||||
public string Message
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _Message, "@Message");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
#endregion
|
||||
#region ContinueAll
|
||||
#region Continue
|
||||
[TypeConverter(typeof(ExpandableObjectConverter))]
|
||||
|
Reference in New Issue
Block a user