0

我一直在想这个问题。

我目前想要一个应用程序来检测它何时被关闭。棘手的是,这个应用程序是一个控制台,这意味着没有表单关闭事件或类似事件。

我在谷歌上有一个侦察员,真的只想出了下面的代码,它只检测到关闭、注销而不是具体的应用程序关闭。

关机事件代码:

Imports Microsoft.Win32
Module Module1

Sub Main()
    AddHandler (SystemEvents.SessionEnding), AddressOf ShutDown.OnShuttingdown
    AddHandler (SystemEvents.SessionEnded), AddressOf ShutDown.OnShutdown
    Console.ReadKey()
End Sub

Public Class ShutDown
    Public Shared Sub OnShuttingdown(ByVal sender As Object, ByVal e As SessionEndingEventArgs)
        e.Cancel = True 'only set if you turn down the shutdown request
        Console.WriteLine("Shutting down - Reason is " & e.Reason)
        Console.ReadKey()
    End Sub

    Public Shared Sub OnShutdown(ByVal sender As Object, ByVal e As SessionEndedEventArgs)
        Console.WriteLine("Shutdown - Reason is " & e.Reason)
        Console.ReadKey()
    End Sub
End Class
End Module

任何帮助,将不胜感激。

问候,

4

2 回答 2

1

您需要创建一个控制台控制处理程序。类中没有执行此操作的工具Console,但您可以调用 Windows API 函数来执行此操作。C# 中的一个示例是Detecting Process Exit From Console Application in C#

您需要阅读并理解SetConsoleCtrlHandler API 函数。

几年前,我写了几篇关于在 C# 中使用 Windows 控制台 API 的文章。不幸的是,DevSource 似乎失去了描述这一点的那个。其他两个可在

http://www.devsource.com/c/a/Using-VS/Working-with-Console-Screen-Buffers-in-NET/

http://www.devsource.com/c/a/Using-VS/Console-Input-in-NET/

这些文章中提供的代码的完整源代码可在http://mischel.com/pubs/consoledotnet.zip获得。

于 2013-06-05T02:20:10.070 回答
0

为AppDomain.ProcessExit尝试 AddHandler

例如通过Thread.GetDomain

于 2013-06-05T02:22:04.790 回答