当前位置:  编程技术>.net/c#/asp.net

c#捕获windows关机事件的实现代码

    来源: 互联网  发布时间:2014-08-30

    本文导语:  本例实现: 捕获windows关机事件,做好定时提醒。 用到了Microsoft.Win32命名空间中的SystemEvents类,它有一个静态的事件SessionEnding在系统注销或关机时发生,此事件只有在winform的程序下有效,而在控制台程序下面无效,不能激发...

本例实现:
捕获windows关机事件,做好定时提醒。

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

1,关键代码:
 

代码示例:

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

using Microsoft.Win32;

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

    }
}

2,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的内存。

您可能感兴趣的文章:
C#入门学习笔记之事件和委托的实例
学习 asp.net 的事件与委托
Asp.Net事件模型总结
C# 事件处理学习心得
c# 委托与事件的小例子


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何用sigaction( )捕获到任何可以被捕获的信号?
  • java进行error捕获和处理示例(java异常捕获)
  • 通过套接字捕获数据包,如何捕获大多数(全部)的通过网卡的包,并要求显示MAC地址和IP地址
  • linux下用libpcap库函数抓包,如何判断捕获的数据包是IP数据包还是非IP数据包,顺便说一下、捕获的数据包除了IP数据包之外,还有那些种类,非常感谢!!!
  • 网络数据包捕获函数包 libpcap
  • 请问如何捕获"tar"命令的标准错误输出
  • PHP捕获Fatal error错误的方法
  • 视频捕获 API VideoMan
  • JavaScript 数据捕获库 Binoculars
  • 捕获键盘输入的 JS 库 Keypress
  • 事件捕获
  • 请各位兄弟帮忙,在线等待,关于进程返回异常的捕获!!!!
  • MINICOM离线运行并长时间捕获输出到文件,急!!!
  • Java线程错误捕获工具 CheckThread
  • 网络数据包捕获函数库 jNetPcap
  • 如何修改linux内核来捕获入侵检测的数据,各位大虾多多赐教。
  • tornado捕获和处理404错误的方法
  • Ollydbg的TLS回调捕获插件 TLSCatch
  • 在线摄像头图片捕获 JPEGCam
  • 怎么样捕获鼠标的双击事件?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3