在执行费时操作时,需要添加操作提醒框,提醒用户正在执行操作,并没有程序崩溃。
添加一个窗体,名为:checkMessage
在点击费时操作的按钮时,添加程序:
Thread thdSub = new Thread(new ThreadStart(showkmess));
thdSub.Start();//开启提醒的对话框
在按钮最后关闭比线程:
thdSub.Abort();//关闭线程
最好在管线程后加上MessageBox,告诉用户操作已经执行完毕。
在开头引用:
using System.Threading;
using System.Diagnostics;
然后,函数showmess定义如下:
public void showmess()
{
checkMessage cc = new checkMessage();
cc.StartPosition = FormStartPosition.CenterParent;
cc.ShowDialog();
cc.Close();
}
OK,提醒框做好了!