16 references to IsSelectedProperty
PresentationFramework (16)
src\Framework\System\Windows\Controls\DataGridRow.cs (1)
1077public static readonly DependencyProperty IsSelectedProperty = Selector.IsSelectedProperty.AddOwner(
src\Framework\System\Windows\Controls\ListBox.cs (3)
671item.SetCurrentValueInternal(IsSelectedProperty, BooleanBoxes.TrueBox); 675item.SetCurrentValueInternal(IsSelectedProperty, BooleanBoxes.FalseBox); 769item.SetCurrentValueInternal(IsSelectedProperty, BooleanBoxes.Box(select));
src\Framework\System\Windows\Controls\ListBoxItem.cs (1)
76Selector.IsSelectedProperty.AddOwner(typeof(ListBoxItem),
src\Framework\System\Windows\Controls\MenuItem.cs (1)
999Selector.IsSelectedProperty.AddOwner(
src\Framework\System\Windows\Controls\Primitives\Selector.cs (7)
230return (bool) element.GetValue(IsSelectedProperty); 246element.SetValue(IsSelectedProperty, BooleanBoxes.Box(isSelected)); 1003element.ClearValue(IsSelectedProperty); 1818return (bool)container.GetValue(Selector.IsSelectedProperty); 1829return (bool)element.GetValue(Selector.IsSelectedProperty); 1847container.SetCurrentValueInternal(Selector.IsSelectedProperty, BooleanBoxes.Box(value)); 1863element.SetCurrentValueInternal(Selector.IsSelectedProperty, BooleanBoxes.Box(value));
src\Framework\System\Windows\Controls\Primitives\TabPanel.cs (1)
334bool isActiveTab = (bool)child.GetValue(Selector.IsSelectedProperty);
src\Framework\System\Windows\Controls\TabItem.cs (1)
80Selector.IsSelectedProperty.AddOwner(typeof(TabItem),
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
8001DependencyProperty dp = System.Windows.Controls.Primitives.Selector.IsSelectedProperty;