文本框的动态事件
如何动态地制作一个事件?例如,我正在制作一个支持选项卡的记事本以供练习,并且对于每个新选项卡,都会动态创建一个文本框。如何为这些文本框创建一个事件(例如 TextChanged)?
谢谢。
How do you make an event dynamically? Like for example, I'm making a notepad with tab support for practice, and for every new tab, a text box is made dynamically. How can I make an event (TextChanged for example) for these text boxes?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个
TextBox
对象,为其分配事件并添加到选项卡控件。Create an
TextBox
object, assign the event on it and add to the tab control.DynamicTextBox.TextChanged += (发件人, args) => { 这里是你的回调代码 };
dynamicTextBox.TextChanged += (sender, args) => { your callback code goes here };