本文介绍了当我提出延迟时,表单上的消息不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
按下按钮后我想延迟标签上的信息
/ /System.Threading.Thread.Sleep(5000); < - 这不起作用,但确实如此,但标签上的消息不会在表格上显示
private void button12_Click_1( object sender,EventArgs e)
{
label1.Text = message;
// System.Threading.Thread.Sleep(5000);
Form1 start = new Form1();
start.Show();
this .Hide();
}
解决方案
Hi everyone,
I want to delay message from label after pushing the button
//System.Threading.Thread.Sleep(5000); <- this doesn't work, it does but message from label doesn't apper on form
private void button12_Click_1(object sender, EventArgs e) { label1.Text = "message "; //System.Threading.Thread.Sleep(5000); Form1 start = new Form1(); start.Show(); this.Hide(); }
解决方案
这篇关于当我提出延迟时,表单上的消息不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!