3

我正在尝试获取当前托盘图标的 hwnd。我所做的是使用以下代码获取系统 trat 窗口的 hWnd:

[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindowEx(IntPtr hWndParent, IntPtr hWndChildAfter, string lpClassName, string lpWindowName);


[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);


static IntPtr GetSystemTrayHandle()
{           
    IntPtr hWndTray = FindWindow("Shell_TrayWnd", null);
    if (hWndTray != IntPtr.Zero)
    {
        hWndTray = FindWindowEx(hWndTray, IntPtr.Zero, "TrayNotifyWnd", null);
        if (hWndTray != IntPtr.Zero)
        {
            hWndTray = FindWindowEx(hWndTray, IntPtr.Zero, "SysPager", null);
            if (hWndTray != IntPtr.Zero)
            {
                hWndTray = FindWindowEx(hWndTray, IntPtr.Zero, "ToolbarWindow32", null);
                return hWndTray;
            }
        }
    }

    return IntPtr.Zero;
}

我从这里获取的:查找系统托盘中列出的应用程序和服务?

然后我使用以下代码枚举了该 hWnd 的子窗口:

[DllImport("user32")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool EnumChildWindows(IntPtr window, EnumWindowProc callback, IntPtr i);

public static List<IntPtr> GetChildWindows(IntPtr parent)
{
List<IntPtr> result = new List<IntPtr>();
GCHandle listHandle = GCHandle.Alloc(result);
try
{
    EnumWindowProc childProc = new EnumWindowProc(EnumWindow);
    EnumChildWindows(parent, childProc, GCHandle.ToIntPtr(listHandle));
}
finally
{
    if (listHandle.IsAllocated)
    listHandle.Free();
}
return result;
}

private static bool EnumWindow(IntPtr handle, IntPtr pointer)
{
GCHandle gch = GCHandle.FromIntPtr(pointer);
List<IntPtr> list = gch.Target as List<IntPtr>;
if (list == null)
{
    throw new InvalidCastException("GCHandle Target could not be cast as List<IntPtr>");
}
list.Add(handle);
//  You can modify this to check to see if you want to cancel the operation, then return a null here
return true;
}

public delegate bool EnumWindowProc(IntPtr hWnd, IntPtr parameter);

我从这里拿的:enumchildwindows (user32)

然后我像这样使用它:

IntPtr temp = GetSystemTrayHandle();
List<IntPtr> tst = GetChildWindows(temp);
MessageBox.Show(tst.Count.ToString());
foreach (IntPtr ip in tst)
{
    MessageBox.Show(ip.ToString());
}

但它List<IntPtr> tst是空的..知道为什么吗?我做错了吗?

4

3 回答 3

7

ToolbarWindow32 的“孩子”不是窗口。它们是工具栏按钮。您将使用 TB_BUTTONCOUNT 消息来检索按钮的数量,使用 TB_GETBUTTONINFO 消息来检索有关此类按钮的信息。顺便说一句,由于窗口属于另一个进程,因此很难做到,仅使用 SendMessage() 不起作用,因为指针无效。而且最终是徒劳的,这样的按钮不包含有关与图标相关联的进程类型的任何信息。那是隐藏在外壳中的信息,你无法得到它。

于 2011-03-02T22:40:41.773 回答
1

没有子句柄。您可以通过 Spy++ 验证这一点。

它不是软管子控件,而是直接渲染和处理工具提示之类的东西。

在此处输入图像描述

于 2011-03-02T22:40:16.317 回答
0

我检查了如果窗口在桌面上打开,那么它有样式:

WS_VISIBLE=true
WS_MINIMIZE=false

如果窗口在任务栏中:

WS_VISIBLE=true
WS_MINIMIZE=true

如果窗口在系统托盘中:

WS_VISIBLE=false
WS_MINIMIZE=true

因此,您可以使用样式来确定窗口是否在托盘中:

public IsWindowFromTray(hWnd)
{    
    bool isMinimized = Win32Natives.IsIconic(hWnd);
    bool isVisible = Win32Natives.IsWindowVisible(hWnd);

    return isMinimized && !isVisible;
}

它适用于大多数应用程序。

PS:我用的是pinvoke

[DllImport("user32.dll")]
public static extern bool IsIconic(IntPtr hWnd);

[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool IsWindowVisible(IntPtr hWnd);
于 2014-09-04T07:02:28.323 回答