我正在编写一个显示/隐藏某些目标应用程序窗口的程序。我之前正在测试它,并注意到一些奇怪的东西。如果我以管理员身份运行目标应用程序(右键单击-> 属性,“兼容性”选项卡,“以管理员身份运行此程序”)它不起作用。
为了演示,我编写了一个名为“TargetApplication”的简单 GUI 应用程序,然后编写了以下代码来测试显示/隐藏此应用程序:
class Program
{
static void Main(string[] args)
{
IntPtr windowPtr = FindWindow(null, "TargetApplication");
ShowWindow(windowPtr, 0); // 0 = Hide
Console.WriteLine("The window is now hidden. Press Enter to restore");
Console.ReadLine();
ShowWindow(windowPtr, 9); // 9 = Restore
Console.WriteLine("The window is now restored. Press Enter to exit.");
Console.ReadLine();
}
[DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
}
如果我在没有管理员权限的情况下启动窗口应用程序,它就不起作用。
有人介意为我测试这个吗?我在这里上传了这两个应用程序的 .exe:
您所要做的就是下载它们并运行TestApplication.exe,然后运行TestShowWindow.exe。您会发现,将 TestApplication.exe 更改为以管理员身份运行会导致 ShowWindow 不再工作。
当然,如果您不信任下载我的东西,您可以随时编译我的代码并在 Windows 中您能够更改兼容模式的任何目标应用程序上对其进行测试。
PS 我不确定它是否有区别,但我正在运行 Windows 8 Pro。64 位。