c# - 是否可以使用 IntPtr 在另一个程序中激活选项卡?

标签 c# ui-automation user32

提前致谢。

是否可以使用 IntPtr 在另一个程序中激活选项卡?如果是这样,如何?

SendKeys 不是一个选项。

也许我需要的是钓鱼课。我已经筋疲力尽谷歌和我的首席开发人员。 我将不胜感激一个彻底的解决方案或一个继续我的谷歌努力的建议。

基本流程是:

我将快捷方式图标拖到启动器

Launcher window ~ C# source code

这将打开目标应用程序 (Notepad++) 并获取 IntPtr 等。

我想以编程方式选择 Notepad++ 中的各种项目,例如编辑、编辑下的菜单项或文档选项卡。

Screen grab of Notepad++

我运行的基本代码是:

enter image description here

' Blob '

  • 项目 1:项目的 IntPtr
  • 项目 2:itemsChild 的 IntPtr
  • item 3:item 1的控制文本
  • item 4:是item 1的矩形参数

enter image description here

root 包含类似的信息:

enter image description here

最佳答案

正如其他人所指出的,执行此操作的标准方法是使用 UI Automation . Notepad++ 确实支持 UI 自动化(在某种程度上,因为它是由 UI Automation Windows 层以某种方式自动提供的)。

这是一个示例 C# 控制台应用程序,它演示了以下场景(您需要引用 UIAutomationClient.dll、UIAutomationProvider.dll 和 UIAutomationTypes.dll):

1) 获取第一个运行的notepad++进程(你必须至少启动一个)

2) 打开两个文件(注意notepad++中可能已经有其他打开的标签)

3) 无限循环选择所有标签

class Program
{
    static void Main(string[] args)
    {
        // this presumes notepad++ has been started somehow
        Process process = Process.GetProcessesByName("notepad++").FirstOrDefault();
        if (process == null)
        {
            Console.WriteLine("Cannot find any notepad++ process.");
            return;
        }
        AutomateNpp(process.MainWindowHandle);
    }

    static void AutomateNpp(IntPtr handle)
    {
        // get main window handle
        AutomationElement window = AutomationElement.FromHandle(handle);

        // display the title
        Console.WriteLine("Title: " + window.Current.Name);

        // open two arbitrary files (change this!)
        OpenFile(window, @"d:\my path\file1.txt");
        OpenFile(window, @"d:\my path\file2.txt");

        // selects all tabs in sequence for demo purposes
        // note the user can interact with n++ (for example close tabs) while all this is working
        while (true)
        {
            var tabs = GetTabsNames(window);
            if (tabs.Count == 0)
            {
                Console.WriteLine("notepad++ process seems to have gone.");
                return;
            }

            for (int i = 0; i < tabs.Count; i++)
            {
                Console.WriteLine("Selecting tab:" + tabs[i]);
                SelectTab(window, tabs[i]);
                Thread.Sleep(1000);
            }
        }
    }

    static IList<string> GetTabsNames(AutomationElement window)
    {
        List<string> list = new List<string>();

        // get tab bar
        var tab = window.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Tab));
        if (tab != null)
        {
            foreach (var item in tab.FindAll(TreeScope.Children, PropertyCondition.TrueCondition).OfType<AutomationElement>())
            {
                list.Add(item.Current.Name);
            }
        }
        return list;
    }

    static void SelectTab(AutomationElement window, string name)
    {
        // get tab bar
        var tab = window.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Tab));

        // get tab
        var item = tab.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.NameProperty, name));
        if (item == null)
        {
            Console.WriteLine("Tab item '" + name + "' has been closed.");
            return;
        }

        // select it
        ((SelectionItemPattern)item.GetCurrentPattern(SelectionItemPattern.Pattern)).Select();
    }

    static void OpenFile(AutomationElement window, string filePath)
    {
        // get menu bar
        var menu = window.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.MenuBar));

        // get the "file" menu
        var fileMenu = menu.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.NameProperty, "File"));

        // open it
        SafeExpand(fileMenu);

        // get the new File menu that appears (this is quite specific to n++)
        var subFileMenu = fileMenu.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Menu));

        // get the "open" menu
        var openMenu = subFileMenu.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.NameProperty, "Open..."));

        // click it
        ((InvokePattern)openMenu.GetCurrentPattern(InvokePattern.Pattern)).Invoke();

        // get the new Open dialog (from root)
        var openDialog = WaitForDialog(window);

        // get the combobox
        var cb = openDialog.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.ComboBox));

        // fill the filename
        ((ValuePattern)cb.GetCurrentPattern(ValuePattern.Pattern)).SetValue(filePath);

        // get the open button
        var openButton = openDialog.FindFirst(TreeScope.Children, new AndCondition(
            new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Button),
            new PropertyCondition(AutomationElement.NameProperty, "Open")));

        // press it
        ((InvokePattern)openButton.GetCurrentPattern(InvokePattern.Pattern)).Invoke();
    }

    static AutomationElement WaitForDialog(AutomationElement element)
    {
        // note: this should be improved for error checking (timeouts, etc.)
        while(true)
        {
            var openDialog = element.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Window));
            if (openDialog != null)
                return openDialog;
        }
    }

    static void SafeExpand(AutomationElement element)
    {
        // for some reason, menus in np++ behave badly
        while (true)
        {
            try
            {
                ((ExpandCollapsePattern)element.GetCurrentPattern(ExpandCollapsePattern.Pattern)).Expand();
                return;
            }
            catch
            {
            }
        }
    }
}

如果您想知道这是如何实现的,那么您必须阅读 UI 自动化。所有工具之母称为 Inspect:https://msdn.microsoft.com/library/windows/desktop/dd318521.aspx 确保您获得的版本至少为 7.2.0.0。请注意,还有另一个名为 UISpy 的工具,但 inspect 更好。

请注意,不幸的是,notepad++ 选项卡文本内容 - 因为它基于自定义闪烁编辑器控件 - 不正确支持自动化(我们无法轻松读取它,我想我们必须为此使用闪烁 Windows 消息),但它可以添加到其中(嘿,scintilla 伙计们,如果你读到这篇文章......:)。

关于c# - 是否可以使用 IntPtr 在另一个程序中激活选项卡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29951432/

相关文章:

c# - 无效操作异常 : ObjectDataSource could not find a non-generic method that has parameters:

ios - 选择 iOS 测试框架

java - 有没有办法在 TestNG 中设置全局参数?

c# - SHIFT 快捷方式显示为文化 "nl-BE"的 MAJ,而它应该是 SHIFT (C#.NET)

.net - 为 WM_MOUSEWHEEL 设置 WindowsHookEx

c# - 我们可以使用 HttpClient 发送未签名的客户端证书吗?

c# - Backgroundworker 不会在 DoWork 方法中执行 extern dll 函数

c# - 底层连接已关闭: An unexpected error occurred on a send on

ios - springboard.icons ["appName"] 无法识别 XCUITest 中安装的应用程序

c++ - MoveWindow()、跳过、闪避或绕过消息传递?