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
相关问题
- Views base64 encoded blob in HTML with PHP
- How to get the background from multiple images by
- 'System.Threading.ThreadAbortException' in
- how to use special characters like '<'
- CV2 Image Error: error: (-215:Assertion failed) !s
相关文章
- vb.net 关于xps文件操作问题
- Use savefig in Python with string and iterative in
- Where does this quality loss on Images come from?
- Specifying image dimensions in HTML vs CSS for pag
- Checking for DBNull throws a StrongTypingException
- How to insert pictures into each individual bar in
- Using the typical get set properties in C#… with p
- How do I append metadata to an image in Matlab?
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.