这是我的C#应用程序的全部代码,目标很简单。我想检索系统上打开的窗口,按它们最近打开的方式排序,就像在 Alt-Tab 列表中一样。Alt-Tab 列表列出了上次打开的程序,因此按 Alt-Tab 并仅释放一次将带您回到上次打开的窗口。此代码适用于 Windows 10。下面的代码确实得到了我需要的信息,只是顺序不正确。我应该在哪里查找我需要的信息?
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace GetOpenWindowName
{
class Program
{
static void Main(string[] args)
{
Process[] processlist = Process.GetProcesses();
foreach (Process process in processlist)
{
if (!String.IsNullOrEmpty(process.MainWindowTitle))
{
Console.WriteLine("Process: {0} ID: {1} Window title: {2}", process.ProcessName, process.Id, process.MainWindowTitle);
}
}
Console.ReadLine();
}
}
}
所以,这是我在@PaulF、@stuartd和@IInspectible的帮助下能做的最好的事情。
Alt-Tab 列表中窗口的顺序大致与窗口的 z 顺序相同。@IInspectible告诉我们,设置为最顶层的窗口会打破这一点,但在大多数情况下,可以尊重 z 顺序。因此,我们需要获取打开窗口的 z 顺序。
首先,我们需要引入外部函数 GetWindow,使用这两行:
[DllImport("user32.dll", SetLastError = true)]
private static extern IntPtr GetWindow(IntPtr hWnd, int nIndex);
一旦该函数存在,我们就可以创建此函数来获取 z 顺序:
public static int GetZOrder(Process p)
{
IntPtr hWnd = p.MainWindowHandle;
var z = 0;
// 3 is GetWindowType.GW_HWNDPREV
for (var h = hWnd; h != IntPtr.Zero; h = GetWindow(h, 3)) z++;
return z;
}
关键点:调用 GetWindow 函数中的三个是一个标志:
/// <summary>
/// The retrieved handle identifies the window above the specified window in the Z order.
/// <para />
/// If the specified window is a topmost window, the handle identifies a topmost window.
/// If the specified window is a top-level window, the handle identifies a top-level window.
/// If the specified window is a child window, the handle identifies a sibling window.
/// </summary>
GW_HWNDPREV = 3,
这些是从进程列表中查找窗口的 z 顺序的构建块,这(在大多数情况下(就是 Alt-Tab 顺序。
实现 EnumWindows 似乎按 Tab 键顺序返回窗口
[DllImport("user32.dll")]
private static extern bool EnumWindows(EnumWindowsProc enumProc, IntPtr lParam);
这是如何使用的良好解释如何使用 EnumWindows 查找具有特定标题/标题的窗口?