Serviceboy 发表于 2012-12-18 18:57:48

延时并自动关闭MessageBox

<div id="cnblogs_post_body">信息提示框(MessageBox)是微软NET自带的一个用于弹出警告、错误或者讯息一类的“模式”对话框。此类对话框一旦开启,则后台窗体无法再被激活(除非当前的MessageBox被点击或者关闭取消)。那么如何使用程序模拟鼠标点击这个messageBox(关闭这个MessageBox)呢?答案是你在弹出这个messageBox之前先启用一个定时器,定时器内部不断向窗体发送Enter按钮用于模拟点击MsgBox的内容,同时主程序中弹出模式消息框。代码如下(VS2012 RC 编写):
我们假设窗体上就一个Button,点击这个Button将弹出5个msgbox,同时每个msgbox将延时2秒后自动关闭。

<div class="cnblogs_code">public partial class Form1 : Form    {      private System.Windows.Forms.Timer[] ts = new System.Windows.Forms.Timer[6];      public Form1()      {            InitializeComponent();                  }      void t_Tick(object sender, EventArgs e)      {            ((System.Windows.Forms.Timer)sender).Enabled = false;            SendKeys.SendWait("{Enter}");      }      private void button1_Click(object sender, EventArgs e)      {            Action act = new Action(() =>             {                for (int i = 0; i < 6; i++)                {                  ts = new System.Windows.Forms.Timer();                  ts.Tick += t_Tick;                  ts.Interval = 2000;                  ts.Enabled = true;                  MessageBox.Show("MsgBox" + (i + 1));                  Thread.Sleep(2000);                }            });            act.BeginInvoke(null, null);      }    }
页: [1]
查看完整版本: 延时并自动关闭MessageBox