vb.net LED板显示屏用户控制
我正在 vb.net 中开发 LEDBOARD 用户控件。我也这样做了。实际上,加载时间太长。在 vb6 同一应用程序中,我使用标签控件数组加载 3000 个标签,但没有耗时。在vb.net中我也在做同样的事情,但是加载3000个标签花费了太多时间。还有其他方式(任何控件或任何自定义控件)来绘制输入文本(任何字体样式),图像如下图 它看起来像下面
I am developing LEDBOARD user control in vb.net.I have done it also .Actually its taking too much time to load .In the vb6 same application I am loading 3000 labels using a label control array but not time consuming .In vb.net I am doing same but it's taking too much time to load 3000 labels.Is there any other way(any control or any custom control) to draw input text(any font style),image like below image
It looks like below
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过继承
Control
从头开始创建 LedBoard 控件,而不是使用 UserControl 并添加大量标签。我只是做了一个小测试来告诉你我的意思。您必须调整逻辑以满足您的需求。
Create your LedBoard control from scratch by inheriting from
Control
, instead of using a UserControl and adding tons of labels.I just made a little test to show you what I mean. You will have to adapt the logic to meet your needs.