13 references to FormControlState
UIAutomationClientSideProviders (13)
MS\Internal\AutomationProxies\ProxySimple.cs (2)
762protected WindowsFormsHelper.FormControlState _windowsForms = WindowsFormsHelper.FormControlState.Undeterminate;
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (6)
119static internal FormControlState GetControlState(IntPtr hwnd) 121return IsWindowsFormsControl(hwnd) ? FormControlState.True : FormControlState.False; 138static internal bool IsWindowsFormsControl(IntPtr hwnd, ref FormControlState state) 140if (state == FormControlState.Undeterminate) 145return state == FormControlState.True ? true : false;
MS\Internal\AutomationProxies\WindowsListBox.cs (2)
1078if (_windowsForms == WindowsFormsHelper.FormControlState.Undeterminate) 1083if (_windowsForms == WindowsFormsHelper.FormControlState.True)
MS\Internal\AutomationProxies\WindowsTab.cs (3)
679return new WindowsTabItem(_hwnd, this, index, _windowsForms == WindowsFormsHelper.FormControlState.True); 957if (idProp == AutomationElement.AccessKeyProperty && _windowsForms != WindowsFormsHelper.FormControlState.True) 994return GetName(_hwnd, _item, _windowsForms == WindowsFormsHelper.FormControlState.True);