VB.net 中的标签数组
我在 Array
中有 10 个标签(Label1、Label2、Label3、Label4 等),我需要用计时器更改 Text
属性,我有计时器运行良好,但我不知道如何更改当时的一个标签(这一秒标签1,下一秒标签2,下一秒标签3...等)...
我正在使用VB.NET与Visual Studio 中的 .NET 4.0 框架。
谢谢!
I have 10 labels (Label1, Label2, Label3, Label4, etc...) in an Array
and I need to change the Text
property with a timer, I have the timer working well, but I don't know how to change one Label at the time( this second the label1, the next second label2, the next second label3...etc)...
I'm using VB.NET with the .NET 4.0 Framework in Visual Studio.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以尝试这样的事情:
You can try with something like this:
如果您已设置计时器并已开始工作,请为您的阵列尝试以下操作:
If you have the timer set up and working already, try something like this for your array:
VB.NET 不是 VB6,并且没有控件数组。
有多种方法可以模拟它们(将它们添加到集合中并循环遍历集合),或使用
Form.Controls
集合,仅作用于Label
控件。VB.NET is not VB6 and does not have control arrays.
There are ways to emulate them (adding them to a collection and looping over the collection), or using the
Form.Controls
collection and only acting onLabel
controls, for example.