Real time data value display in C#

后端 未结 3 934
春和景丽
春和景丽 2021-01-28 23:42

Simple C# question: I was trying to design a simple C# DLL that uses a third party library to stream images from a digital camera.

Really beginner C# programmer here, so

3条回答
  •  甜味超标
    2021-01-29 00:16

    a label is very good approach but you have to make sure you are avoiding from application does not respond, so also add a line of code that lets the form process its queue

    lblNumber.Text = number;
    Application.DoEvents();
    

提交回复
热议问题