如何通过PostMessage单击资源管理器

时间:2020-01-04 13:14:26

标签: c# c++ window

我无法在Windows 10中单击资源管理器。我的消息:

private static IntPtr CreateLParam(int LoWord, int HiWord)
    {
        return (IntPtr)((HiWord << 16) | (LoWord & 0xffff));
    }

SendMessage(hand, 0x00000020, IntPtr.Zero, CreateLParam(x, y));

此请求不适用于资源管理器。但这适用于其他窗口。

0 个答案:

没有答案