这个c#应用程序有些不解?
实现的功能是使用c#捕获windows的关机事件 捕获windows的关机事件,做一个程序让它在关机的时候提醒自己,用处大着呢!
首先是调用Microsoft.Win32命名空间下面的SystemEvents类,他有一个静态的事件SessionEnding在系统注销或者关机时发生,此事件只有在winform的程序下有效,而在控制台程序下面无效,不能激发事件;还有一点我们必须在程序推出时将加上的事件移除掉,否则就容易造成内存溢出。
关键代码如下:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using Microsoft.Win32;
namespace Shutdown
{
static class Program
{
/**////
/// 应用程序的主入口点。
///
[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惹的祸;实在是不可思议。
转http://dotnet.chinaitlab.com/
--------------------编程问答-------------------- 不懂 友情UP --------------------编程问答-------------------- 捕获windows的关机事件
怎么不解? --------------------编程问答-------------------- 学习 --------------------编程问答-------------------- 休眠和关机是两个完全不同的概念 --------------------编程问答-------------------- xue xi --------------------编程问答-------------------- GZ --------------------编程问答-------------------- 关机和休眠就不是一回事,当然不能捕获了
你点关闭计算机的这两个也不是一个按钮好不好 --------------------编程问答-------------------- 代码挺容易解释的。 --------------------编程问答-------------------- 见过关机的代码,居然还有防止关机的,倒~~~~~~~~ --------------------编程问答-------------------- up --------------------编程问答-------------------- 这个能对付冲击波么? --------------------编程问答-------------------- mark,慢慢看 --------------------编程问答-------------------- 再写上捕获休眠事件不就行了吗? --------------------编程问答-------------------- Microsoft.Win32.SystemEvents.PowerModeChanged+=
补充:.NET技术 , C#