6 references to ControlType
UIAutomationTypes (6)
System\Windows\Automation\AutomationIdentifier.cs (2)
167case UiaCoreTypesApi.AutomationIdType.ControlType: autoid = new ControlType(id, programmaticName); break; 210case UiaCoreTypesApi.AutomationIdType.ControlType: return IsControlTypeSupported(id);
System\Windows\Automation\ControlType.cs (4)
28: base(UiaCoreTypesApi.AutomationIdType.ControlType, id, programmaticName) 36return (ControlType)AutomationIdentifier.Register(UiaCoreTypesApi.AutomationIdType.ControlType, (int)id, programmaticName); 44return (ControlType)AutomationIdentifier.LookupById(UiaCoreTypesApi.AutomationIdType.ControlType, id); 53ControlType controlType = (ControlType)AutomationIdentifier.Register(UiaCoreTypesApi.AutomationIdType.ControlType, (int)id, programmaticName);