使用c#捕获windows的关机事件_c#应用

2008-02-23 05:42:02来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

在公司上班,下班时需要签退,而我呢隔三差五就会忘那么一次。怎么办呢,于是就想能不能捕获windows的关机事件,做一个程式让他在关机的时候提醒我一下呢。

很幸运很容易就找到了Microsoft.Win32命名空间下面的SystemEvents类,他有一个静态的事件SessionEnding在系统注销或关机时发生,此事件只有在winform的程式下有效,而在控制台程式下面无效,不能激发事件;更有一点我们必须在程式推出时将加上的事件移除掉,否则就容易造成内存溢出。

关键代码如下:


using System;
using System.Collections.Generic;
using System.Windows.Forms;

using Microsoft.Win32;

namespace Shutdown
{
static class Program
{
/**//// <summary>
/// 应用程式的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
FormShutdown formShutdown = new FormShutdown();
SystemEvents.SessionEnding = new SessionEndingEventHandler(formShutdown.SystemEvents_SessionEnding);
Application.Run(formShutdown);
}

}
}Form 的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.Win32;

namespace Shutdown
{
public partial class FormShutdown : Form
{
const string MESSAGE_TXT = "您签退了吗?";
const string MESSAGE_TITLE = "提示";

public FormShutdown()
{
InitializeComponent();
}


internal void SystemEvents_SessionEnding(object sender, SessionEndingEventArgs e)
{
DialogResult result = MessageBox.Show(MESSAGE_TXT, MESSAGE_TITLE, MessageBoxButtons.YesNo);

e.Cancel = (result == DialogResult.No);
}

private void FormShutdown_Load(object sender, EventArgs e)
{
this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - 200, 0);
}

protected override void OnClosed(EventArgs e)
{
SystemEvents.SessionEnding -= new SessionEndingEventHandler(this.SystemEvents_SessionEnding);
base.OnClosed(e);
}
}
}
此程式在使用c#2.0在Windows2003下测试通过。大家在使用SystemEvents.SessionEnding事件时切记要在程式退出时移除事件。

但是有两点遗憾之处:

1. 使用这种方式不能捕获休眠时的事件

2. 这个程式占用的内存太多了,只有这么一个小功能居然占了12M的内存,这都是.Net framework惹的货;实在是不可思议。

大家有没有什么好主意能够克服这两个缺点呢?
下载源文档


标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: .net框架集webclient类向wince平台上传文档(ftp方式)延迟15秒

下一篇: c#图像放大问题解决方法_c#应用