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)
156if (WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\NonClientArea.cs (1)
128if(hasNonClientControls || WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\ProxyHwnd.cs (3)
156if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 158string sPersistentID = WindowsFormsHelper.WindowsFormsID (_hwnd); 166if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
265return WindowsFormsHelper.IsWindowsFormsControl(_hwnd) ? "WinForm" : "Win32"; 758protected 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()) 394if (hwndParent != IntPtr.Zero && WindowsFormsHelper.IsWindowsFormsControl(hwndParent)) 667if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 677if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd)) 704if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd, ref _windowsForms)) 717if (!WindowsFormsHelper.IsWindowsFormsControl(hwnd))
MS\Internal\AutomationProxies\WindowsListBox.cs (4)
619if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 1074if (_windowsForms == WindowsFormsHelper.FormControlState.Undeterminate) 1076_windowsForms = WindowsFormsHelper.GetControlState(_hwnd); 1079if (_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); 558if( !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)
122if (WindowsFormsHelper.IsWindowsFormsControl(_hwnd) && IsWinformUpdown(_hwnd))