是否可以从 C# 中的外部应用程序获取 UI 文本。
特别是,有没有办法从第三方编写的外部 Win32 应用程序中读取标签(我假设它是普通的 Windows 标签控件)中的 Unicode 文本?文本是可见的,但不能在 UI 中通过鼠标选择。
我假设有一些可访问性 API(例如,用于屏幕阅读器)允许这样做。
编辑:目前正在考虑使用托管间谍应用程序之类的东西,但仍会感谢任何其他线索。
如果您只关心标准 Win32 标签,那么WM_GETTEXT将正常工作,如其他答案中所述。
--
有一个可访问性 API - UIAutomation - 用于标准标签,它也在幕后使用 WM_GETTEXT。然而,它的一个优点是它可以从其他几种类型的控件获取文本,包括大多数系统控件,并且通常使用非系统控件的 UI - 包括 WPF、IE 和 Firefox 中的文本等。
// compile as:
// csc file.cs /r:UIAutomationClient.dll /r:UIAutomationTypes.dll /r:WindowsBase.dll
using System.Windows.Automation;
using System.Windows.Forms;
using System;
class Test
{
public static void Main()
{
// Get element under pointer. You can also get an AutomationElement from a
// HWND handle, or by navigating the UI tree.
System.Drawing.Point pt = Cursor.Position;
AutomationElement el = AutomationElement.FromPoint(new System.Windows.Point(pt.X, pt.Y));
// Prints its name - often the context, but would be corresponding label text for editable controls. Can also get the type of control, location, and other properties.
Console.WriteLine( el.Current.Name );
}
}
如果该 unicode 文本实际上是一个带有标题的窗口,则可以通过发送WM_GETTEXT消息来实现。
[DllImport("user32.dll")]
public static extern int SendMessage (IntPtr hWnd, int msg, int Param, System.Text.StringBuilder text);
System.Text.StringBuilder text = new System.Text.StringBuilder(255) ; // or length from call with GETTEXTLENGTH
int RetVal = Win32.SendMessage( hWnd , WM_GETTEXT, text.Capacity, text);
如果它只是在画布上绘制,如果您知道应用程序使用什么框架,那么您可能会有一些运气。如果它使用 WinForms 或 Borland 的 VCL,您可以使用这些知识来获取文本。
在那篇文章中没有看到 wm_gettext 或 wm_gettextlength 的值,所以以防万一..
const int WM_GETTEXT = 0x0D;
const int WM_GETTEXTLENGTH = 0x0E;