Allow RO Tab and Transition Tab to remain enabled when switching Tabs

This commit is contained in:
Rich 2011-02-09 15:31:09 +00:00
parent ca5da7abe1
commit 24b023c2f7

View File

@ -259,14 +259,12 @@ namespace VEPROMS
SetupButtons();
displayBookMarks.MyDisplayTabControl = tc; // allows bookmark selection to bring up steps/docs
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)
{
Console.WriteLine("here");
}
//void displayRO_EnabledChanged(object sender, EventArgs e)
//{
// Console.WriteLine("here");
//}
void _MyMRIList_AfterRemove(object sender)
{
SetupMRU();
@ -1053,7 +1051,7 @@ namespace VEPROMS
displayRO.Enabled = displayTransition.Enabled = _LastStepRTB.EditMode;
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;
}
}