How to hide console after creating form in console

2019-05-11 16:50发布

I want to hide my console after creating a from in my console application. And then show it again after closing form :) or somewhere when I want ...

Console.Hide???
Application.Run(nForm());
Console.Show???

1条回答
霸刀☆藐视天下
2楼-- · 2019-05-11 17:49

I think you'll need to delve into the FindWindow and ShowWindow API calls. For example:

    [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

    }
查看更多
登录 后发表回答