0
檢查是否選擇了AutomationElement。我用下面的代碼來獲得AutomationElement對象。如果選擇了AutomationElement,是否有任何方法可用
System.Windows.Point point = new System.Windows.Point(Cursor.Position.X, Cursor.Position.Y);
AutomationElement element = AutomationElement.FromPoint(point);
//how to know element is selected or not
即使它不是一個ItemContainer內部的控制可以實現的選擇模式。爲了安全,請檢查selectionItemPattern的值null。 – Ameen
或者使用安全的TryGetCurrentPattern方法。 –