3 writes to IsChecked
PresentationFramework (2)
System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
176checkBox.IsChecked = (uneditedValue != true);
System\Windows\Controls\FlowDocumentReader.cs (1)
1298_findButton.IsChecked = enable;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonSplitMenuItem.cs (1)
193toggleButton?.IsChecked = splitMenuItem.IsChecked;
15 references to IsChecked
PresentationFramework (15)
System\Windows\Automation\Peers\RadioButtonAutomationPeer.cs (3)
63if (((RadioButton)Owner).IsChecked != true) 74if (((RadioButton)Owner).IsChecked == true) 87return ((RadioButton)Owner).IsChecked == true;
System\Windows\Automation\Peers\ToggleButtonAutomationPeer.cs (1)
55return ConvertToToggleState(owner.IsChecked);
System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
170bool? uneditedValue = checkBox.IsChecked;
System\Windows\Controls\FlowDocumentReader.cs (2)
1296if(_findButton != null && _findButton.IsChecked.HasValue && _findButton.IsChecked.Value != enable)
System\Windows\Controls\Primitives\ToggleButton.cs (6)
146private static object OnGetIsChecked(DependencyObject d) {return ((ToggleButton)d).IsChecked;} 260var isChecked = IsChecked; 290isChecked = IsChecked; 299isChecked = IsChecked; 330if (IsChecked == true) 333isChecked = IsChecked.HasValue; // HasValue returns true if IsChecked==false
System\Windows\Controls\RadioButton.cs (2)
155if (rb != this && (rb.IsChecked == true) && rootScope == KeyboardNavigation.GetVisualRoot(rb)) 173if (rb != null && rb != this && string.IsNullOrEmpty(rb.GroupName) && (rb.IsChecked == true))