获取在控件上执行的事件
我希望得到一些帮助。
在我的应用程序中,我有一个文本框,它应该显示单击任何控件时发生的事件。
例如,如果我单击应用程序中的按钮或复选框,则文本框应识别该事件并显示为“button1.clicked”、“checkbox1.checked”之类的内容。
谁能帮我完成这件事。
提前致谢。:)
I am hoping for some help.
In my application, I have a Text Box which should display the event occured in any control while clicking it.
For exmaple, if I click on a button or a checkbox in the app., the text box should identify the event and display as button1.clicked, checkbox1.checked kind of things.
Can anyone help me to get this done.
Thanks In Advance.:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想动态地为所有控件执行此操作,您可以浏览控件树并为如下所示的事件订阅相同的事件处理程序,在预定义控件集的情况下,基本上只需为相同的事件处理程序订阅所有控件。
预定义控件集
动态
If you want to do it for all controls dynamically you can navigate through the controls tree and subscribe the same event handler for events like shown below, in case of predefined controls set basically just subscribe all of them for the same even handlers.
Predefined controls set
Dynamic