寻找实用工具" Win32Utils"从窗口或控件句柄获取文本。

时间:2014-08-11 18:53:09

标签: c# user32

在几年前的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”吗?感谢..

1 个答案:

答案 0 :(得分:1)

我认为这只是Win32 API的C#包装类:

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);