当前位置:  开发笔记 > 编程语言 > 正文

在C#中从外部应用程序获取UI文本

如何解决《在C#中从外部应用程序获取UI文本》经验,为你挑选了2个好方法。

是否可以从C#中的外部应用程序获取UI文本.

特别是,有没有办法从第三方编写的外部Win32应用程序中读取标签中的Unicode文本(我认为它是一个普通的Windows标签控件)?文本是可见的,但在UI中不能通过鼠标选择.

我假设有一些可访问性API(例如用于屏幕阅读器)允许这样做.

编辑:目前正在考虑使用类似管理间谍应用程序的东西,但仍然会欣赏任何其他线索.



1> Lars Truijen..:

如果该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,您可以使用该知识来获取文本.



2> BrendanMcK..:

如果您只关心标准的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 );
    }
}

推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有