I have an issue with a splitter panel losing control and need to set it back.
My application uses a SplitContainer; and when my control loads data in panel2 of splitter, focus is shifting to panel1.
There are controls which are tabStop = true in both panels since tab and shift+tab needs to work on both panels and splitter.
To set it back, added a Control object in GotFocus for panel2 control and using this in _enter of panel1 to set focus back in panel2. However, I need to reset this control object; which I cannot do in _leave of panel2 since on setting back control GotFocus will be called again.