Maximizing console window - C#

前端 未结 2 1749
鱼传尺愫
鱼传尺愫 2021-02-12 18:26

I\'m working on a console application on C# and I need to open the console maximized. When I just hit the maximize button on the console window, it maximizes only on height and

2条回答
  •  渐次进展
    2021-02-12 18:53

        [DllImport("kernel32.dll", ExactSpelling = true)]
    
        private static extern IntPtr GetConsoleWindow();
        private static IntPtr ThisConsole = GetConsoleWindow();
    
        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    
        private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
        private const int HIDE = 0;
        private const int MAXIMIZE = 3;
        private const int MINIMIZE = 6;
        private const int RESTORE = 9;
    
    
        static void Main(string[] args)
        {
           ShowWindow(ThisConsole, MINIMIZE);
        }
    

提交回复
热议问题