我正在尝试使用此代码最大化“Microsoft Minesweeper”(Windows 10)进程:
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
[DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
private const int SW_MAXIMIZE = 3;
IntPtr HWND = FindWindow(null, "Microsoft Minesweeper");
ShowWindow(HWND, SW_MAXIMIZE);
起初这是有效的,但由于某些原因我将其最小化后,代码不再起作用了。我已经在另一个进程(记事本)上检查了该代码,即使我最小化了记事本,它也能完美运行。但出于某种原因,“微软扫雷”不起作用。
在我最小化之后知道为什么它不起作用?