When I add the textBox.TextChanged to watch list I get a message saying
The event 'System.Windows.Forms.Control.TextChanged' can only appear on the left hand side of += or -=
Is there any way to check what event’s are called on text change?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In the debugger, open up the control and find whichever private variable contains the EventHandlerList. Then find the event add/remove code for
TextChangedso see which key is used – and examine the event handler list’s entry for that key.It’s painful, but it should work.