1 override of GetParent
UIAutomationClientsideProviders (1)
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
255internal override ProxySimple GetParent()
19 references to GetParent
UIAutomationClientsideProviders (19)
MS\Internal\AutomationProxies\ProxyFragment.cs (1)
176return GetParent ();
MS\Internal\AutomationProxies\ProxyHwnd.cs (2)
199if (name == null && GetParent() == null) 235if (_controlLabel == IntPtr.Zero && name != null && GetParent() == null)
MS\Internal\AutomationProxies\ProxySimple.cs (8)
145return Misc.AppendToRuntimeId(GetParent().GetRuntimeId(), _item); 181if (_hwnd == IntPtr.Zero || (GetParent() != null && GetParent()._hwnd == _hwnd)) 329ProxySimple parent = GetParent(); 355if (GetParent() == null && (bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty)) 466return GetParent(); 494while (walk.GetParent() != null) 496walk = walk.GetParent();
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
263return base.GetParent();
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1996parent = lvi.GetParent();
MS\Internal\AutomationProxies\WindowsListViewItemCheckBox.cs (1)
80Rect parentRect = GetParent().BoundingRectangle;
MS\Internal\AutomationProxies\WindowsListViewSubItem.cs (2)
143Rect parentRect = GetParent().GetParent().BoundingRectangle;
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1843return GetParent();
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
899parent = current.GetParent(); 1318while ((current = current.GetParent() as TreeViewItem) != null)