在几年前的Q / A中: Read cell Items from data grid in SysListView32 of another application using C#
Chris Mead的示例代码有一行如下所示:(Win32Utils.GetText(child)!=“UltraGrid1”)其中child是一个窗口句柄,他从一个pinvoke GetChildWindows返回。
有人可以指引我“Win32Utils”吗?感谢..
答案 0 :(得分:1)
我认为这只是Win32 API的C#包装类:
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);