我想在我的控制台应用程序中创建一个from之后隐藏我的控制台。 然后在关闭表格后再次显示:)或者在我想要的某个地方......
Console.Hide???
Application.Run(nForm());
Console.Show???
答案 0 :(得分:8)
我认为您需要深入研究FindWindow和ShowWindow API调用。例如:
[DllImport("user32.dll")]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]
public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
static void Main(string[] args)
{
Console.Title = "ConsoleApplication1";
IntPtr h=FindWindow(null, "ConsoleApplication1");
ShowWindow(h, 0); // 0 = hide
Form f = new Form();
f.ShowDialog();
ShowWindow(h, 1); // 1 = show
}