how can i disable close button of console window in a visual studio console application?(如何在 Visual Studio 控制台应用程序中禁用控制台窗口的关闭按钮?)
问题描述
我需要禁用 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
推荐答案
下面是一个禁用控制台窗口关闭按钮的示例:
Here is an example to disable close button on console window:
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();
}
}
这篇关于如何在 Visual Studio 控制台应用程序中禁用控制台窗口的关闭按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Visual Studio 控制台应用程序中禁用控制台窗口的关闭按钮?


基础教程推荐
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01