32 references to WindowsFormsHelper
UIAutomationClientSideProviders (32)
MS\Internal\AutomationProxies\Main.cs (1)
79new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsFormsHelper.Create), "WindowsForms", null, ClientSideProviderMatchIndicator.AllowSubstringMatch),
MS\Internal\AutomationProxies\MSAANativeProvider.cs (1)
152if (WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\NonClientArea.cs (1)
121if(hasNonClientControls || WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\ProxyHwnd.cs (3)
151if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 153string sPersistentID = WindowsFormsHelper.WindowsFormsID (_hwnd); 161if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
258return WindowsFormsHelper.IsWindowsFormsControl(_hwnd) ? "WinForm" : "Win32"; 750protected WindowsFormsHelper.FormControlState _windowsForms = WindowsFormsHelper.FormControlState.Undeterminate;
MS\Internal\AutomationProxies\WindowsButton.cs (8)
99if (WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 101return WindowsFormsHelper.CreateButton(hwnd); 252if (!WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms) && IsStartButton()) 390if (hwndParent != IntPtr.Zero && WindowsFormsHelper.IsWindowsFormsControl(hwndParent)) 663if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 673if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 700if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 713if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsListBox.cs (4)
609if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 1064if (_windowsForms == WindowsFormsHelper.FormControlState.Undeterminate) 1066_windowsForms = WindowsFormsHelper.GetControlState(_hwnd); 1069if (_windowsForms == WindowsFormsHelper.FormControlState.True)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (1)
173if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_NUMBER) && !WindowsFormsHelper.IsWindowsFormsControl(_hwnd))
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
71if (WindowsFormsHelper.IsWindowsFormsControl(className))
MS\Internal\AutomationProxies\WindowsStatusBar.cs (3)
64bool isWinforms = WindowsFormsHelper.IsWindowsFormsControl(hwnd); 65ProxySimple el = isWinforms ? (ProxySimple)WindowsFormsHelper.Create(hwnd, 0, idObject) : (ProxySimple)Create(hwnd, 0); 558if( !WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsTab.cs (5)
42_windowsForms = WindowsFormsHelper.GetControlState (hwnd); 671return new WindowsTabItem(_hwnd, this, index, _windowsForms == WindowsFormsHelper.FormControlState.True); 949if (idProp == AutomationElement.AccessKeyProperty && _windowsForms != WindowsFormsHelper.FormControlState.True) 977if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 986return GetName(_hwnd, _item, _windowsForms == WindowsFormsHelper.FormControlState.True);
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
118if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd) && IsWinformUpdown(_hwnd))