2

我正在尝试从应用程序中选择一个树项目,但得到“无法执行操作”。我尝试使用 UI Spy 选择树项并得到相同的错误。

元素:“树项”“网络”名称:InvalidOperationException 消息:无法执行操作。堆栈跟踪:在 MS.Internal.Automation 的 System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) 的 MS.Internal.AutomationProxies.WindowsTreeView.TreeViewItem.System.Windows.Automation.Provider.ISelectionItemProvider.Select() System.Windows.Automation.SelectionItemPattern.Select() 处的 .UiaCoreApi.CheckError(Int32 hr)

从 UI Spy 我知道 SelectionItem 是受支持的模式。这是一些代码

AutomationElement  Item = _ParentNode.FindFirst(TreeScope.Descendants, new AndCondition(
            new PropertyCondition(AutomationElement.NameProperty, "Network"),
            new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.TreeItem)));

SelectionItemPattern ItemToSelect = Item .GetCurrentPattern(SelectionItemPattern.Pattern) as SelectionItemPattern;
ItemToSelect.Select();

知道我做错了什么吗?

4

1 回答 1

0

以编程方式验证自动化元素“Item”是否支持 SelectionPattern 控制模式。

private SelectionPattern GetSelectionPattern(
AutomationElement targetControl)
{
SelectionPattern selectionPattern = null;

try
{
    selectionPattern =
        targetControl.GetCurrentPattern(SelectionPattern.Pattern)
        as SelectionPattern;
}
// Object doesn't support the SelectionPattern control pattern 
catch (InvalidOperationException)
{
    return null;
}

return selectionPattern;

}

来源:https ://msdn.microsoft.com/en-us/library/ms604455(v=vs.110).aspx

于 2015-07-30T05:37:46.677 回答