C#倒计时关闭对话框

时间:2013-12-10 15:59:02
【文件属性】:

文件名称:C#倒计时关闭对话框

文件大小:132KB

文件格式:RAR

更新时间:2013-12-10 15:59:02

C#

C#倒计时关闭对话框VS2008源代码!Messagebox 自定义倒计时关闭!3秒钟后关闭...2秒钟后关闭...1秒钟后关闭... private void StartKiller() { Timer timer = new Timer(); timer.Interval = 3000; //3秒启动 timer.Tick += new EventHandler(timer1_Tick); timer.Start(); } private void KillMessageBox() { //按照MessageBox的标题,找到MessageBox的窗口 IntPtr ptr = FindWindow(null, "MessageBox"); if (ptr != IntPtr.Zero) { //找到则关闭MessageBox窗口 PostMessage(ptr, WM_CLOSE, IntPtr.Zero, IntPtr.Zero); } }


【文件预览】:
WindowsFormsApplication4
----WindowsFormsApplication4.suo(17KB)
----WindowsFormsApplication4.sln(962B)
----WindowsFormsApplication4()
--------Form1.cs(2KB)
--------bin()
--------obj()
--------Properties()
--------Program.cs(505B)
--------WindowsFormsApplication4.csproj(4KB)
--------Form1.Designer.cs(2KB)
--------Form1.resx(6KB)

网友评论

  • 不错!这个资源还是有点用
  • 谢谢分享,帮助我知道怎样获取窗口脚来处理。
  • 只是一个定时器和句柄获取,不能显示倒计时,这么多分,坑爹呀
  • 虽然无法更新倒计时的计数,但也提供了一点思路
  • 资源可以,但是要分太多,需要改进一些。
  • 资源可以,但是需要改进一些。
  • Messagebox 自定义倒计时关闭!3秒钟后关闭...2秒钟后关闭...1秒钟后 没有这个功能