C2015-028 Add Editorial Mode to PROMS Step Editor
This commit is contained in:
@@ -650,8 +650,13 @@ namespace Volian.Controls.Library
|
||||
/// </summary>
|
||||
public Color ActiveColor
|
||||
{
|
||||
get { return _ActiveColor; }
|
||||
set { _ActiveColor = value; }
|
||||
get {
|
||||
// C2015-028 Add Editorial Mode to PROMS Step Editor
|
||||
// if in Editorial Mode, use LightGreen background
|
||||
_ActiveColor = MyStepTabPanel != null && MyStepTabPanel.MyDisplayTabControl.IsInEditorialMode ? Color.LightGreen : Color.SkyBlue;
|
||||
return _ActiveColor;
|
||||
}
|
||||
set { _ActiveColor = value; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets or Sets the Annotation backcolor for StepRTBs in the Panel
|
||||
|
Reference in New Issue
Block a user