[DllImport("user32.dll")] private static extern bool SetForegroundWindow(IntPtr hWnd); private void SendBarcode() { IntPtr hWnd = FindWindow(null, "测试软件名称"); // 替换为测试软件的窗口标题 if (hWnd != IntPtr.Zero) { SetForegroundWindow(hWnd); SendKeys.Send(txt_barcode.Text); SendKeys.Send("{ENTER}"); } }FindWindow报错,上下文找不到FindWindow
时间: 2024-01-24 13:05:16 浏览: 143
C#调用Win32的API函数--User32.dll
您的代码中使用到了`FindWindow`函数,这是Win32 API中的函数,需要在代码中声明该函数的引用。您需要添加以下代码:
```
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
```
这段代码声明了`FindWindow`函数的引用,并指定了其所在的DLL文件为`user32.dll`。同时,也指定了函数的参数类型和返回值类型。注意,`FindWindow`的第一个参数可以传入`null`,表示任意窗口类名。第二个参数应该传入要查找的窗口名称。
另外,如果您的应用程序是以管理员权限运行的,那么还需要在声明函数的时候加上一行`[return: MarshalAs(UnmanagedType.Bool)]`,表示返回值为布尔类型。这样,才能正确地处理错误信息。
阅读全文