Hi i have a UserControl which contains the textbox within, i wanted to access the textchanged event of the textbox, but in the event properties of the usercontrol i don't see the events for the textbox. How can i expose and handle particular events of the child controls from the publically exposed UserControl in Winforms with C#.
|
feedback
|
|
You can surface a new event and pass any subscriptions straight through to the control, if you like:
| |||||||||
feedback
|
|
Expose the entire TextBox as a public property in user control and subscribe to it's events the way you desire.
} After doing this you can subscribe on any of its events like so:
Hope this helps! | |||
feedback
|