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:
parent
1b9d1cf902
commit
0726a87325
@ -5268,6 +5268,14 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _IncludeStepNum, "TabData/@IncludeStepNum");
|
return LazyLoad(ref _IncludeStepNum, "TabData/@IncludeStepNum");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<bool> _IncludeSectionNum;
|
||||||
|
public bool IncludeSectionNum
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _IncludeSectionNum, "TabData/@IncludeSectionNum");
|
||||||
|
}
|
||||||
|
}
|
||||||
private LazyLoad<string> _Justify;
|
private LazyLoad<string> _Justify;
|
||||||
public string Justify
|
public string Justify
|
||||||
{
|
{
|
||||||
|
@ -810,6 +810,7 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
public override void IdentifyMe(bool highlight)
|
public override void IdentifyMe(bool highlight)
|
||||||
{
|
{
|
||||||
|
this.BringToFront();
|
||||||
if (highlight)
|
if (highlight)
|
||||||
MyStepRTB.BackColor = Color.Gray;
|
MyStepRTB.BackColor = Color.Gray;
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user