1 override of GetParent
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
241internal override ProxySimple GetParent()
19 references to GetParent
UIAutomationClientSideProviders (19)
MS\Internal\AutomationProxies\ProxyFragment.cs (1)
170return GetParent ();
MS\Internal\AutomationProxies\ProxyHwnd.cs (2)
188if (name == null && GetParent() == null) 224if (_controlLabel == IntPtr.Zero && name != null && GetParent() == null)
MS\Internal\AutomationProxies\ProxySimple.cs (8)
138return Misc.AppendToRuntimeId(GetParent().GetRuntimeId(), _item); 174if (_hwnd == IntPtr.Zero || (GetParent() != null && GetParent()._hwnd == _hwnd)) 322ProxySimple parent = GetParent(); 348if (GetParent() == null && (bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty)) 459return GetParent(); 487while (walk.GetParent() != null) 489walk = walk.GetParent();
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
249return base.GetParent();
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1990parent = lvi.GetParent();
MS\Internal\AutomationProxies\WindowsListViewItemCheckBox.cs (1)
75Rect parentRect = GetParent().BoundingRectangle;
MS\Internal\AutomationProxies\WindowsListViewSubItem.cs (2)
136Rect parentRect = GetParent().GetParent().BoundingRectangle;
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1830return GetParent();
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
890parent = current.GetParent(); 1309while ((current = current.GetParent() as TreeViewItem) != null)