第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用arduino按端口顯示增量后如何清理標(biāo)簽?

使用arduino按端口顯示增量后如何清理標(biāo)簽?

C#
大話西游666 2023-08-20 15:47:31
我正在嘗試增加 Arduino 中的一個(gè)值并將其發(fā)送到端口,然后將其實(shí)時(shí)顯示在標(biāo)簽中。即使我放置并延遲(200)和Thread.sleep(200);namespace Receiver{    public partial class Form1 : Form    {        SerialPort port;        public Form1()       {            InitializeComponent();            this.FormClosed += new FormClosedEventHandler(Form1_FormClosed);            if (port == null)            {                port = new SerialPort("COM9", 9600);//Set your board COM                port.Open();            }        }        void Form1_FormClosed(object sender, FormClosedEventArgs e)        {            if (port != null && port.IsOpen)            {                port.Close();            }        }        private void Afisare_Click(object sender, EventArgs e)        {            while (true)            {                string a = port.ReadExisting();                afisare.Text = a;                Thread.Sleep(200);            }        }    }}在變化中,我得到了所有的值,一個(gè)接一個(gè),在屏幕上顯示其中一些。
查看完整描述

1 回答

?
郎朗坤

TA貢獻(xiàn)1921條經(jīng)驗(yàn) 獲得超9個(gè)贊

您正在處理程序中運(yùn)行無限循環(huán)Afisare_Click,該循環(huán)與您的 UI 在同一線程中運(yùn)行。這意味著 UI 將無法呈現(xiàn)控件更改。

Thread.Sleep代碼將上下文切換到其他線程,但不是 UI 線程。

您的方法應(yīng)該是使用Timer。

public partial class Form1 : Form

{

? ? private Timer _timer;


? ? public Form1()

? ? {

? ? ? ? InitializeComponent();

? ? }


? ? private void Form1_Load(object sender, EventArgs e)

? ? {

? ? ? ? _timer = new Timer();

? ? ? ? _timer.Interval = 200;

? ? ? ? _timer.Tick += _timer_Tick;

? ? ? ? _timer.Enabled = true;

? ? ? ? _timer.Start();

? ? }


? ? private void _timer_Tick(object sender, EventArgs e)

? ? {

? ? ? ? // This function will be called every 200 ms.

? ? ? ? // Read the information from port, update the UI.


? ? ? ? string a = port.ReadExisting();

? ? ? ? afisare.Text = a;

? ? }


? ? private void Form1_FormClosed(object sender, FormClosedEventArgs e)

? ? {

? ? ? ? _timer.Stop();


? ? ? ? if (port != null && port.IsOpen)

? ? ? ? {

? ? ? ? ? ? port.Close();

? ? ? ? }

? ? }

}


查看完整回答
反對(duì) 回復(fù) 2023-08-20
  • 1 回答
  • 0 關(guān)注
  • 150 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)