当前位置:首页 > 码农资料 > 正文内容

C#强制刷新toolStripStatusLabel

CCSSRW2年前 (2023-01-31)码农资料1572

程序运行时只有“结束”显示出来了,“开始”完全没显示

调试发现是赋了值,只是没显示

toolStripStatusLabel1.Text = "开始";
...
...
toolStripStatusLabel1.Text = "结束";

试试在中间追加this.Refresh();


toolStripStatusLabel1.Text = "开始";
this.Refresh();
...
...
toolStripStatusLabel1.Text = "结束";


扫描二维码推送至手机访问

本文链接:http://xinrui.ren/post/155.html

返回列表

上一篇:C#路径及文件名处理

下一篇:UML