8 references to IsSelectionRequiredProperty
UIAutomationClient (3)
MS\Internal\Automation\Schema.cs (2)
328new AutomationPropertyInfo( convertToBool, SelectionPattern.IsSelectionRequiredProperty, typeof(bool), false ), 410SelectionPattern.IsSelectionRequiredProperty };
System\Windows\Automation\SelectionPattern.cs (1)
278return (bool)_el.GetPatternPropertyValue(IsSelectionRequiredProperty, _useCache);
UIAutomationClientsideProviders (5)
MS\Internal\AutomationProxies\EventManager.cs (2)
293RaisePropertyChangedEvent(el, SelectionPattern.IsSelectionRequiredProperty, selection.IsSelectionRequired); 542_objectIdClient.Add(SelectionPattern.IsSelectionRequiredProperty, new RaiseEvent(HandleIsSelectionRequiredProperty));
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
417if (idProp == SelectionPattern.IsSelectionRequiredProperty && !IsMultipleSelection() && !HasSelection()) 466if ((eventId == NativeMethods.EventObjectSelection || eventId == NativeMethods.EventObjectSelectionAdd) && (idProp as AutomationProperty) == SelectionPattern.IsSelectionRequiredProperty) 469WinEventTracker.EvtIdProperty[] aEvtIdProperties = new WinEventTracker.EvtIdProperty[] { new WinEventTracker.EvtIdProperty(NativeMethods.EventObjectSelection, SelectionPattern.IsSelectionRequiredProperty) };