我正在创建一个剪贴板监视器作为项目,在剪贴板上更改应用程序通过调用GetClipboardOwner来检测哪个程序使用了剪贴板。
这是代码的摘录:
protected override void WndProc(ref Message m)
{
const int WM_DRAWCLIPBOARD = 0x308;
const int WM_CHANGECBCHAIN = 0x030D;
switch (m.Msg)
{
case WM_DRAWCLIPBOARD:
Debug.Indent();
//Process the clipboard here
uint processId;
IntPtr ownerHwnd = GetClipboardOwner();
GetWindowThreadProcessId(ownerHwnd, out processId);
Process proc = Process.GetProcessById((int)processId);
Debug.WriteLine(String.Format("Window Title: {0} Filename: {1}", proc.MainWindowTitle, process.MainModule.FileName));
SendMessage(_NextClipboardViewer, m.Msg, m.WParam, m.LParam);
break;
case WM_CHANGECBCHAIN:
if (m.WParam == _NextClipboardViewer)
_NextClipboardViewer = m.LParam;
else
SendMessage(_NextClipboardViewer, m.Msg, m.WParam, m.LParam);
break;
default:
base.WndProc(ref m);
break;
}
}
和DLLImports:
[DllImport("User32.dll")]
public static extern IntPtr SetClipboardViewer(IntPtr _newviewerhandle);
[DllImport("User32.dll")]
public static extern bool ChangeClipboardChain(IntPtr removehandle, IntPtr nexthandle);
[DllImport("User32.dll")]
public static extern int SendMessage(IntPtr hwnd, int msg, IntPtr wparam, IntPtr lparam);
[DllImport("User32.dll")]
public static extern IntPtr GetClipboardOwner();
[DllImport("kernel32.dll")]
public static extern int GetWindowThreadProcessId(IntPtr handle, out uint threadid);
“输出”窗口中的异常是 - Something.exe中出现“System.EntryPointNotFoundException”类型的第一次机会异常
更新2 将“Kernel32”更改为“User32”后,它可以正常运行,但对于某些应用程序,如Word,Excel,我得到此异常; System.dll
中发生了'System.ComponentModel.Win32Exception'类型的第一次机会异常有什么想法吗?
更新3 上述异常是由于32位进程(我的应用程序)访问64位进程的模块(Word,Excel等)引起的 将配置更改为x64。
答案 0 :(得分:6)
DllImport
的{{1}}应该使用GetWindowThreadProcessId
,而不是user32.dll
每个MSDN:http://msdn.microsoft.com/en-us/library/windows/desktop/ms633522(v=vs.85).aspx
或者只是使用PInvoke.Net:GetWindowThreadProcessId