8 references to IsSelectionRequiredProperty
UIAutomationClient (3)
MS\Internal\Automation\Schema.cs (2)
354new AutomationPropertyInfo( convertToBool, SelectionPattern.IsSelectionRequiredProperty, typeof(bool), false ), 436SelectionPattern.IsSelectionRequiredProperty };
System\Windows\Automation\SelectionPattern.cs (1)
255return (bool)_el.GetPatternPropertyValue(IsSelectionRequiredProperty, _useCache);
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\EventManager.cs (2)
286RaisePropertyChangedEvent(el, SelectionPattern.IsSelectionRequiredProperty, selection.IsSelectionRequired); 535_objectIdClient.Add(SelectionPattern.IsSelectionRequiredProperty, new RaiseEvent(HandleIsSelectionRequiredProperty));
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
409if (idProp == SelectionPattern.IsSelectionRequiredProperty && !IsMultipleSelection() && !HasSelection()) 458if ((eventId == NativeMethods.EventObjectSelection || eventId == NativeMethods.EventObjectSelectionAdd) && (idProp as AutomationProperty) == SelectionPattern.IsSelectionRequiredProperty) 461WinEventTracker.EvtIdProperty[] aEvtIdProperties = new WinEventTracker.EvtIdProperty[] { new WinEventTracker.EvtIdProperty(NativeMethods.EventObjectSelection, SelectionPattern.IsSelectionRequiredProperty) };