摘要:
可以利用 Win32 API 来控制 Console 窗口的 最大化 或 最小化。废话不多说见以下代码: [DllImport("user32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool SetWindowPos( IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, ... 阅读全文