I have a TextBox control on my Form. I use the Leave event on the control to process user input. It works fine if the user clicks on some other control on the form, but the even doesn’t get fired when the user goes straight to the main menu. Any ideas which event should I use to get it fired everytime?
Share
I found a reasonable workaround, I set the focus on the main menu manually:
EDIT: As suggested by @TcKs, I changed the event from ItemClicked to MenuActivate. Thanks very much for help!