我正在尝试将点击消息发送到(或调用)另一个应用程序中的按钮。

我使用了UISpy.exe,可以找到我需要的元素。

但没有id,clickablePoint和Invoke模式。

我试过下面的代码:

var processStartInfo = new ProcessStartInfo(@"tdesktop\Program.exe");
        var proc = Process.Start(processStartInfo);
        Thread.Sleep(3000);
        AutomationElement mainWin = AutomationElement.RootElement.FindChildByProcessId(proc.Id);
        List<AutomationElement> elmList= GetChildren(mainWin);
        //MessageBox.Show(elmList.Count.ToString());
        if (elmList.Count == 7)
        {
           List<AutomationElement> menubar= GetChildren(elmList[6]);

           AutomationElement elementNode = menubar[1];
           double x = elementNode.GetClickablePoint().X;
           double y = elementNode.GetClickablePoint().Y;

           win32 w = new win32();
           w.move_left_click((UInt32)x, (UInt32)y);


        }

它会在elementNode.GetClickablePoint()。X中引发一个异常,即Autumation元素没有可单击的点。

我也尝试过TryGetInvokePattern(),但是仍然抛出execption,它没有InvokePattern。

我使用VS2012和.net 4.5

有什么办法可以做到这一点?

最佳答案

菜单栏不会显示InvokePattern(请参阅UI Automation Support for the MenuBar Control Type)。但是,菜单项可以是Invoke d(请参阅UI Automation Support for the MenuItem Control Type)。

以下代码说明了如何生成菜单项列表:

AutomationElementCollection items = menubar.FindAll(
    TreeScope.Children,
    new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.MenuItem));

关于c# - 使用不带InvokePattern或clickablePoint的UI自动化在单击按钮时进行调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31813622/

10-10 11:21