如何禁用在Visual Studio控制台应用程序控制台窗口的关闭按钮?控制台、应用程序、按钮、窗口

由网友(挂念你)分享简介:我要禁用一个Visual Studio控制台的控制台窗口的关闭按钮应用程序用C#编写。我想,应用程序应该运行,直到它完成并且用户不应该能够通过关闭控制台窗口阻止它。我使用Visual Studio 2010 I need to disable the close button in the console win...

我要禁用一个Visual Studio控制台的控制台窗口的关闭按钮 应用程序用C#编写。我想,应用程序应该运行,直到它完成 并且用户不应该能够通过关闭控制台窗口阻止它。我使用Visual Studio 2010

I need to disable the close button in the console window of a visual studio console application written in C#. I want that the application should run until it completes and the user should not be able to stop it by closing the console window. I am using visual studio 2010

推荐答案

下面的例子禁用关闭按钮:

example below disables close button:

class Program
{
    private const int MF_BYCOMMAND = 0x00000000;
    public const int SC_CLOSE = 0xF060;

    [DllImport("user32.dll")]
    public static extern int DeleteMenu(IntPtr hMenu, int nPosition, int wFlags);

    [DllImport("user32.dll")]
    private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);

    [DllImport("kernel32.dll", ExactSpelling = true)]
    private static extern IntPtr GetConsoleWindow();

    static void Main(string[] args)
    {
        DeleteMenu(GetSystemMenu(GetConsoleWindow(), false),SC_CLOSE, MF_BYCOMMAND);
        Console.Read();
    }
}
阅读全文

相关推荐

最新文章