I need to be able to determine when ContainsFocus changes on a Control (specifically a windows form). Overriding OnGotFocus is not the answer. When I bring the form to the foreground, ContainsFocus is true and Focused is false. So is there an OnGotFocus equivalent for ContainsFocus? Or any other way?
|
|
|
||
|
|
|
|
Note: GotFocus events of the child controls are fired if you have a child control. Otherwise OnGotFocus of the form is called. If I understood the question correctly, then this should work:
|
||||||
|
|
|
One way to solve this is to use a Timer. It's definitely brute force, but it gets the job done:
But is there an easier way? |
||
|
|
|
|
Handling the GotFocus and LostFocus events should do it. Another thing to note... the SDK says this about the ContainsFocus property:
EDIT: When handling the GotFocus event, you may still have to check the Focused/ContainsFocus property depending on how the hierarchy of your controls is set up. ContainsFocus will be true if the control or any of its children have focus. Focus will only be true if the specific control itself has focus, regardless of its children. |
|||
|
