32 references to WindowsFormsHelper
UIAutomationClientSideProviders (32)
MS\Internal\AutomationProxies\Main.cs (1)
83new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsFormsHelper.Create), "WindowsForms", null, ClientSideProviderMatchIndicator.AllowSubstringMatch),
MS\Internal\AutomationProxies\MSAANativeProvider.cs (1)
158if (WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\NonClientArea.cs (1)
132if(hasNonClientControls || WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\ProxyHwnd.cs (3)
161if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 163string sPersistentID = WindowsFormsHelper.WindowsFormsID (_hwnd); 171if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
269return WindowsFormsHelper.IsWindowsFormsControl(_hwnd) ? "WinForm" : "Win32"; 762protected WindowsFormsHelper.FormControlState _windowsForms = WindowsFormsHelper.FormControlState.Undeterminate;
MS\Internal\AutomationProxies\WindowsButton.cs (8)
105if (WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 107return WindowsFormsHelper.CreateButton(hwnd); 258if (!WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms) && IsStartButton()) 399if (hwndParent != IntPtr.Zero && WindowsFormsHelper.IsWindowsFormsControl(hwndParent)) 672if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 682if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 709if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 722if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsListBox.cs (4)
623if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 1078if (_windowsForms == WindowsFormsHelper.FormControlState.Undeterminate) 1080_windowsForms = WindowsFormsHelper.GetControlState(_hwnd); 1083if (_windowsForms == WindowsFormsHelper.FormControlState.True)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (1)
178if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_NUMBER) && !WindowsFormsHelper.IsWindowsFormsControl(_hwnd))
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
75if (WindowsFormsHelper.IsWindowsFormsControl(className))
MS\Internal\AutomationProxies\WindowsStatusBar.cs (3)
68bool isWinforms = WindowsFormsHelper.IsWindowsFormsControl(hwnd); 69ProxySimple el = isWinforms ? (ProxySimple)WindowsFormsHelper.Create(hwnd, 0, idObject) : (ProxySimple)Create(hwnd, 0); 561if( !WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsTab.cs (5)
45_windowsForms = WindowsFormsHelper.GetControlState (hwnd); 679return new WindowsTabItem(_hwnd, this, index, _windowsForms == WindowsFormsHelper.FormControlState.True); 957if (idProp == AutomationElement.AccessKeyProperty && _windowsForms != WindowsFormsHelper.FormControlState.True) 985if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 994return GetName(_hwnd, _item, _windowsForms == WindowsFormsHelper.FormControlState.True);
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
126if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd) && IsWinformUpdown(_hwnd))