首页 > 编程 > C# > 正文

WinForm实现程序一段时间不运行自动关闭的方法

2019-10-29 21:38:45
字体:
来源:转载
供稿:网友

这篇文章主要介绍了WinForm实现程序一段时间不运行自动关闭的方法,涉及WinForm计时器及进程操作的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了WinForm实现程序一段时间不运行自动关闭的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.ComponentModel; 
  4. using System.Data; 
  5. using System.Drawing; 
  6. using System.Text; 
  7. using System.Windows.Forms; 
  8. using System.Net; 
  9. using System.IO; 
  10. using System.Security.Cryptography.X509Certificates; 
  11. using System.Net.Security; 
  12. namespace DemoDataGridView 
  13. public partial class Form3 : Form, IMessageFilter 
  14. private int m_WaitMinute = 0; 
  15. System.Windows.Forms.Timer MyTimer; 
  16. public Form3() 
  17. InitializeComponent(); 
  18. MyTimer = new Timer(); 
  19. MyTimer.Interval = 1000; 
  20. MyTimer.Tick += new EventHandler(MyTimer_Tick); 
  21. Application.Idle += new EventHandler(Application_Idle); 
  22. void MyTimer_Tick(object sender, EventArgs e) 
  23. if (m_WaitMinute < 60) 
  24. MyTimer.Enabled = true
  25. MyTimer.Interval = 10000; //10秒 
  26. m_WaitMinute += 1; 
  27. // this.Opacity = 1.0 - Convert.ToDouble(m_WaitMinute / 60.0); 
  28. else 
  29. MyTimer.Enabled = false
  30. void Application_Idle(object sender, EventArgs e) 
  31. if (m_WaitMinute == 0) 
  32. System.IO.File.WriteAllText("D://1.txt", DateTime.Now.ToString()); 
  33. MyTimer.Start(); 
  34. else 
  35. if (m_WaitMinute >= 6) 
  36. System.IO.File.WriteAllText("D://2.txt", DateTime.Now.ToString()); 
  37. this.Close(); 
  38. public bool PreFilterMessage(ref Message m) 
  39. if (m_WaitMinute != 0) 
  40. m_WaitMinute = 0; 
  41. MyTimer.Enabled = false
  42. return true
  43. return false

希望本文所述对大家的C#程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表