Added a Format Property (IncludeSectionNum) to Include Section Number in Section Cautions and Notes.

Bring active window to front, so that active window can be seen.  Sometimes the active window was being displayed under other windows.  This makes it possible to see the active window
This commit is contained in:
Rich 2016-10-21 15:05:21 +00:00
parent 1b9d1cf902
commit 0726a87325
2 changed files with 9 additions and 0 deletions

View File

@ -5268,6 +5268,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _IncludeStepNum, "TabData/@IncludeStepNum");
}
}
private LazyLoad<bool> _IncludeSectionNum;
public bool IncludeSectionNum
{
get
{
return LazyLoad(ref _IncludeSectionNum, "TabData/@IncludeSectionNum");
}
}
private LazyLoad<string> _Justify;
public string Justify
{

View File

@ -810,6 +810,7 @@ namespace Volian.Controls.Library
}
public override void IdentifyMe(bool highlight)
{
this.BringToFront();
if (highlight)
MyStepRTB.BackColor = Color.Gray;
else