1 override of GetParent
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
237internal override ProxySimple GetParent()
19 references to GetParent
UIAutomationClientSideProviders (19)
MS\Internal\AutomationProxies\ProxyFragment.cs (1)
167return GetParent ();
MS\Internal\AutomationProxies\ProxyHwnd.cs (2)
178if (name == null && GetParent() == null) 214if (_controlLabel == IntPtr.Zero && name != null && GetParent() == null)
MS\Internal\AutomationProxies\ProxySimple.cs (8)
130return Misc.AppendToRuntimeId(GetParent().GetRuntimeId(), _item); 166if (_hwnd == IntPtr.Zero || (GetParent() != null && GetParent()._hwnd == _hwnd)) 312ProxySimple parent = GetParent(); 338if (GetParent() == null && (bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty)) 449return GetParent(); 477while (walk.GetParent() != null) 479walk = walk.GetParent();
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
245return base.GetParent();
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1986parent = lvi.GetParent();
MS\Internal\AutomationProxies\WindowsListViewItemCheckBox.cs (1)
73Rect parentRect = GetParent().BoundingRectangle;
MS\Internal\AutomationProxies\WindowsListViewSubItem.cs (2)
135Rect parentRect = GetParent().GetParent().BoundingRectangle;
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1823return GetParent();
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
885parent = current.GetParent(); 1304while ((current = current.GetParent() as TreeViewItem) != null)