32 references to WindowsFormsHelper
UIAutomationClientsideProviders (32)
MS\Internal\AutomationProxies\Main.cs (1)
91new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.WindowsFormsHelper.Create), "WindowsForms", null, ClientSideProviderMatchIndicator.AllowSubstringMatch),
MS\Internal\AutomationProxies\MSAANativeProvider.cs (1)
166if (WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\NonClientArea.cs (1)
129if(hasNonClientControls || WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\ProxyHwnd.cs (3)
172if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 174string sPersistentID = WindowsFormsHelper.WindowsFormsID (_hwnd); 182if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
276return WindowsFormsHelper.IsWindowsFormsControl(_hwnd) ? "WinForm" : "Win32"; 769protected WindowsFormsHelper.FormControlState _windowsForms = WindowsFormsHelper.FormControlState.Undeterminate;
MS\Internal\AutomationProxies\WindowsButton.cs (8)
116if (WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 118return WindowsFormsHelper.CreateButton(hwnd); 269if (!WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms) && IsStartButton()) 410if (hwndParent != IntPtr.Zero && WindowsFormsHelper.IsWindowsFormsControl(hwndParent)) 683if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 693if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 720if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 733if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsListBox.cs (4)
631if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 1086if (_windowsForms == WindowsFormsHelper.FormControlState.Undeterminate) 1088_windowsForms = WindowsFormsHelper.GetControlState(_hwnd); 1091if (_windowsForms == WindowsFormsHelper.FormControlState.True)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (1)
190if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_NUMBER) && !WindowsFormsHelper.IsWindowsFormsControl(_hwnd))
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
83if (WindowsFormsHelper.IsWindowsFormsControl(className))
MS\Internal\AutomationProxies\WindowsStatusBar.cs (3)
79bool isWinforms = WindowsFormsHelper.IsWindowsFormsControl(hwnd); 80ProxySimple el = isWinforms ? (ProxySimple)WindowsFormsHelper.Create(hwnd, 0, idObject) : (ProxySimple)Create(hwnd, 0); 572if( !WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsTab.cs (5)
43_windowsForms = WindowsFormsHelper.GetControlState (hwnd); 677return new WindowsTabItem(_hwnd, this, index, _windowsForms == WindowsFormsHelper.FormControlState.True); 955if (idProp == AutomationElement.AccessKeyProperty && _windowsForms != WindowsFormsHelper.FormControlState.True) 983if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 992return GetName(_hwnd, _item, _windowsForms == WindowsFormsHelper.FormControlState.True);
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
139if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd) && IsWinformUpdown(_hwnd))