Visual Basic - 修改代码中生成的文本框和对象
我编写了一个 for 循环来在应用程序运行时生成几个新的文本框和 numericUpDowns。
文本框/ numericUpDowns 是使用二维数组生成的。
我的问题是:当文本框/ numericUpDowns 被修改时如何处理?
如果您想要代码,只需请求它,我会将其添加到此处。
谢谢!
I've written a for loop to generate several new text boxes and numericUpDowns when the application is run.
The text boxes / numericUpDowns are generated with a 2-dimensional array.
My question is: How do I handle when the text boxes / numericUpDowns are modified?
If you would like the code, just request it and I'll add it here.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我为类似的事情写的东西。它制作了一个按钮网格并演示了如何处理事件。
Here's something I wrote for something similar. It makes a grid of buttons and demonstrates how to handle the events.