运行c#程序时禁用shell窗口

时间:2011-09-15 14:54:08

标签: c#

我写了一些基本程序(来自空项目),它显示带有一些按钮的窗口,但每当我运行它时,visual studio会显示我的shell黑色窗口,我该如何禁用此行为?提前谢谢

1 个答案:

答案 0 :(得分:0)

这样做:

[DllImport("kernel32.dll")]
static extern IntPtr GetConsoleWindow();

[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

const int SW_HIDE = 0;
const int SW_SHOW = 5;

var handle = GetConsoleWindow();

// Hide
ShowWindow(handle, SW_HIDE);

// Show
ShowWindow(handle, SW_SHOW);

来源:Show/Hide the console window of a C# console application