Allow RO Tab and Transition Tab to remain enabled when switching Tabs
This commit is contained in:
parent
ca5da7abe1
commit
24b023c2f7
@ -259,14 +259,12 @@ namespace VEPROMS
|
|||||||
SetupButtons();
|
SetupButtons();
|
||||||
displayBookMarks.MyDisplayTabControl = tc; // allows bookmark selection to bring up steps/docs
|
displayBookMarks.MyDisplayTabControl = tc; // allows bookmark selection to bring up steps/docs
|
||||||
office2007StartButton1.MouseDown +=new MouseEventHandler(office2007StartButton1_MouseDown);
|
office2007StartButton1.MouseDown +=new MouseEventHandler(office2007StartButton1_MouseDown);
|
||||||
displayRO.EnabledChanged += new EventHandler(displayRO_EnabledChanged);
|
//displayRO.EnabledChanged += new EventHandler(displayRO_EnabledChanged);
|
||||||
}
|
}
|
||||||
|
//void displayRO_EnabledChanged(object sender, EventArgs e)
|
||||||
void displayRO_EnabledChanged(object sender, EventArgs e)
|
//{
|
||||||
{
|
// Console.WriteLine("here");
|
||||||
Console.WriteLine("here");
|
//}
|
||||||
}
|
|
||||||
|
|
||||||
void _MyMRIList_AfterRemove(object sender)
|
void _MyMRIList_AfterRemove(object sender)
|
||||||
{
|
{
|
||||||
SetupMRU();
|
SetupMRU();
|
||||||
@ -1053,7 +1051,7 @@ namespace VEPROMS
|
|||||||
displayRO.Enabled = displayTransition.Enabled = _LastStepRTB.EditMode;
|
displayRO.Enabled = displayTransition.Enabled = _LastStepRTB.EditMode;
|
||||||
else // going out of edit mode in a cell of the grid.
|
else // going out of edit mode in a cell of the grid.
|
||||||
{
|
{
|
||||||
if (!_LastStepRTB.Parent.Focused && (infotabRO.IsSelected || infotabTransition.IsSelected)) return;
|
if (this.ActiveControl != tc || (!_LastStepRTB.Parent.Focused && (infotabRO.IsSelected || infotabTransition.IsSelected))) return;
|
||||||
displayRO.Enabled = displayTransition.Enabled = _LastStepRTB.EditMode;
|
displayRO.Enabled = displayTransition.Enabled = _LastStepRTB.EditMode;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user