c#如何桌面发送按键或都字符

 IntPtr hWndParent = (IntPtr)FindWindowEx(0, 0, "WorkerW", null);
            IntPtr hWndItem;
            IntPtr hWnd;
            while (true)
            {
                hWndItem = (IntPtr)FindWindowEx((int)hWndParent, 0, "SHELLDLL_DefView", null);
                if (hWndItem != IntPtr.Zero)
                {
                    hWnd = (IntPtr)FindWindowEx((int)hWndItem, 0, "SysListView32", "FolderView");
                    break;
                }
                hWndParent = (IntPtr)FindWindowEx(0, (int)hWndParent, "WorkerW", null);
            }

               
            // 激活
            // SetActiveWindow(GetDesktopWindow());
            // SetActiveWindow(tempHwnd);
            //  SetForegroundWindow(parent);

            SetFocus(hWnd);

            SendKeys.Send("as");
            SendKeys.SendWait("df");
试了都没有效果

向桌面发送按键或都字符,目的是在桌面按键配合Listary用
SendKeys.Send("as");
 SendKeys.SendWait("df");

新手学习,上面代码是网上找的

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

IntPtr hWndParent = (IntPtr)FindWindowEx(0, 0, "WorkerW", null);
            IntPtr hWndItem;
            IntPtr hWnd;
            while (true)
            {
                hWndItem = (IntPtr)FindWindowEx((int)hWndParent, 0, "SHELLDLL_DefView", null);
                if (hWndItem != IntPtr.Zero)
                {
                    hWnd = (IntPtr)FindWindowEx((int)hWndItem, 0, "SysListView32", "FolderView");
                    SetForegroundWindow(hWnd);
                    break;
                }
                hWndParent = (IntPtr)FindWindowEx(0, (int)hWndParent, "WorkerW", null);
            }
 
                
            SendKeys.Send("as");
            SendKeys.SendWait("df");


调试完成~~

调试”概念很简单,但是有的人没有调试概念而靠“蒙”着编程。比如说你的 hWnd、hWndItem、hWndParent 等等每一步论坛发帖机的值是什么?你 用别的工具——特别是windows SDK 自带的标准调试工具——验证过每一个值对应什么 windows 系统内部对象了吗?

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值