如何用API函数实现按键精灵里面的GetKeyFocusWnd()命令
[DllImport("user32.dll",EntryPoint="WindowFromPoint")]publicstaticexternintWindowFrom...
[DllImport("user32.dll", EntryPoint = "WindowFromPoint")]public static extern int WindowFromPoint(int xPoint, int yPoint);比如说这两行就是c#中完整的的使用API函数获取鼠标指向的窗口的句柄的用法。要求按照这种格式给出代码,如何使用API函数实现按键精灵里面的GetKeyFocusWnd命令,不要说尝试FindWindow或者GetForegroundWindow等等,就必须要实现GetKeyFocusWnd这个获取键盘当前焦点的窗口。要代码的啊!
展开
2个回答
2013-03-29
展开全部
VC中函数GetFocus可以,函数原型是:HWND GetFocus(VOID);
翻译成C#是:
[DllImport("user32.dll", EntryPoint = "GetFocus")]public static extern int GetFocus();
PS: MSDN 的解释:The GetFocus function retrieves the handle to the window that has the keyboard focus, if the window is attached to the calling thread's message queue.
翻译成C#是:
[DllImport("user32.dll", EntryPoint = "GetFocus")]public static extern int GetFocus();
PS: MSDN 的解释:The GetFocus function retrieves the handle to the window that has the keyboard focus, if the window is attached to the calling thread's message queue.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
[DllImport("user32.dll", EntryPoint = "WindowFromPoint")]
public static extern int WindowFromPoint(int xPoint, int yPoint);
比如说这两行就是c#中完整的的使用API函数获取鼠标指向的窗口的句柄的用法。
要求按照这种格式给出代码,如何使用API函数实现按键精灵里面的GetKeyFocusWnd命令,不要说尝试FindWindow或者GetForegroundWindow等等,就必须要实现GetKeyFocusWnd这个获取键盘当前焦点的窗口。
要代码的啊!
public static extern int WindowFromPoint(int xPoint, int yPoint);
比如说这两行就是c#中完整的的使用API函数获取鼠标指向的窗口的句柄的用法。
要求按照这种格式给出代码,如何使用API函数实现按键精灵里面的GetKeyFocusWnd命令,不要说尝试FindWindow或者GetForegroundWindow等等,就必须要实现GetKeyFocusWnd这个获取键盘当前焦点的窗口。
要代码的啊!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询