Real time data value display in C#

后端 未结 3 904
春和景丽
春和景丽 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:17

    I would have a Label control (assuming winforms) whose text property I would set to the value of the counter whenever it incremented.

    counter++;
    myLable.Text = counter;
    

提交回复
热议问题