gpt4 book ai didi

c# - 立即更新 toolStripStatusLabel

转载 作者:太空宇宙 更新时间:2023-11-03 16:59:55 26 4
gpt4 key购买 nike

我有一个 WinForms 程序,它有一个 button、一个 statusStrip 和一个 toolStripStatusLabel 在那个 statusStrip .如果我点击按钮并运行:

private void button1_Click(object sender, EventArgs e)
{
toolStripStatusLabel1.Text = "Test";

System.Threading.Thread.Sleep(5000);
}

然后 toolStripStatusLabel 的文本直到线程完成休眠后才会更新。我如何让它立即更新,然后让线程休眠?

最佳答案

作为P. Kouvarakis说,解决方案是这样的:

toolStripStatusLabel1.Text = "Test";
statusStrip1.Update();

关于c# - 立即更新 toolStripStatusLabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43460212/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com