是否可以使用计时器在标签中显示文本3秒钟?
F.E.保存成功后会收到一条短信“成功!”。 3秒钟,然后返回原始页面。
有人知道如何使用标签或消息框来执行此操作吗?
最佳答案
是的,有可能...
您可以在将标签文本设置为“成功”并将其设置为3秒钟后打勾的地方启动计时器,然后在timer_ticks事件中,您可以重定向到所需的页面。
编辑:启动计时器的代码-这是一个具有一个按钮和一个标签的简单Windows窗体
public partial class Form1 : Form
{
//Create the timer
System.Windows.Forms.Timer myTimer = new System.Windows.Forms.Timer();
public Form1()
{
InitializeComponent();
//Set the timer tick event
myTimer.Tick += new System.EventHandler(myTimer_Tick);
}
private void button1_Click(object sender, EventArgs e)
{
//Set the timer tick interval time in milliseconds
myTimer.Interval = 1000;
//Start timer
myTimer.Start();
}
//Timer tick event handler
private void myTimer_Tick(object sender, System.EventArgs e)
{
this.label1.Text = "Successful";
//Stop the timer - if required
myTimer.Stop();
}
}
关于c# - 使用计时器显示文本3秒钟?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5928532/