32 references to WindowsFormsHelper
UIAutomationClientSideProviders (32)
MS\Internal\AutomationProxies\Main.cs (1)
80new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsFormsHelper.Create), "WindowsForms", null, ClientSideProviderMatchIndicator.AllowSubstringMatch),
MS\Internal\AutomationProxies\MSAANativeProvider.cs (1)
153if (WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\NonClientArea.cs (1)
122if(hasNonClientControls || WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\ProxyHwnd.cs (3)
152if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 154string sPersistentID = WindowsFormsHelper.WindowsFormsID (_hwnd); 162if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
259return WindowsFormsHelper.IsWindowsFormsControl(_hwnd) ? "WinForm" : "Win32"; 751protected WindowsFormsHelper.FormControlState _windowsForms = WindowsFormsHelper.FormControlState.Undeterminate;
MS\Internal\AutomationProxies\WindowsButton.cs (8)
100if (WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 102return WindowsFormsHelper.CreateButton(hwnd); 253if (!WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms) && IsStartButton()) 391if (hwndParent != IntPtr.Zero && WindowsFormsHelper.IsWindowsFormsControl(hwndParent)) 664if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 674if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 701if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 714if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsListBox.cs (4)
610if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 1065if (_windowsForms == WindowsFormsHelper.FormControlState.Undeterminate) 1067_windowsForms = WindowsFormsHelper.GetControlState(_hwnd); 1070if (_windowsForms == WindowsFormsHelper.FormControlState.True)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (1)
174if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_NUMBER) && !WindowsFormsHelper.IsWindowsFormsControl(_hwnd))
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
72if (WindowsFormsHelper.IsWindowsFormsControl(className))
MS\Internal\AutomationProxies\WindowsStatusBar.cs (3)
65bool isWinforms = WindowsFormsHelper.IsWindowsFormsControl(hwnd); 66ProxySimple el = isWinforms ? (ProxySimple)WindowsFormsHelper.Create(hwnd, 0, idObject) : (ProxySimple)Create(hwnd, 0); 559if( !WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsTab.cs (5)
43_windowsForms = WindowsFormsHelper.GetControlState (hwnd); 672return new WindowsTabItem(_hwnd, this, index, _windowsForms == WindowsFormsHelper.FormControlState.True); 950if (idProp == AutomationElement.AccessKeyProperty && _windowsForms != WindowsFormsHelper.FormControlState.True) 978if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 987return GetName(_hwnd, _item, _windowsForms == WindowsFormsHelper.FormControlState.True);
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
119if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd) && IsWinformUpdown(_hwnd))