A textbox looses focus and I don't know why. How can I find out the reason of why the focus is lost? I've tried listening to TextBox.LostFocus event, but it's parameters don't seem to give me any valuable information about the cause.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You might try Snoop - a tool that listens to all events in your app. You could also try to debug your app with Visual Studio, set a breakpoint in TextBox.LostFocus event handler, and inspecting the call stack, where you might see which method caused the lost focus. |
|||||
|
|
|
My best guess is it is losing focus because something else takes the focus You can use the
|
|||
|
|