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