13 references to FormControlState
UIAutomationClientSideProviders (13)
MS\Internal\AutomationProxies\ProxySimple.cs (2)
758protected WindowsFormsHelper.FormControlState _windowsForms = WindowsFormsHelper.FormControlState.Undeterminate;
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (6)
115static internal FormControlState GetControlState(IntPtr hwnd) 117return IsWindowsFormsControl(hwnd) ? FormControlState.True : FormControlState.False; 134static internal bool IsWindowsFormsControl(IntPtr hwnd, ref FormControlState state) 136if (state == FormControlState.Undeterminate) 141return state == FormControlState.True ? true : false;
MS\Internal\AutomationProxies\WindowsListBox.cs (2)
1074if (_windowsForms == WindowsFormsHelper.FormControlState.Undeterminate) 1079if (_windowsForms == WindowsFormsHelper.FormControlState.True)
MS\Internal\AutomationProxies\WindowsTab.cs (3)
677return new WindowsTabItem(_hwnd, this, index, _windowsForms == WindowsFormsHelper.FormControlState.True); 955if (idProp == AutomationElement.AccessKeyProperty && _windowsForms != WindowsFormsHelper.FormControlState.True) 992return GetName(_hwnd, _item, _windowsForms == WindowsFormsHelper.FormControlState.True);