3 writes to IsChecked
PresentationFramework (2)
System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
184checkBox.IsChecked = (uneditedValue != true);
System\Windows\Controls\FlowDocumentReader.cs (1)
1315_findButton.IsChecked = enable;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonSplitMenuItem.cs (1)
209toggleButton.IsChecked = splitMenuItem.IsChecked;
15 references to IsChecked
PresentationFramework (15)
System\Windows\Automation\Peers\RadioButtonAutomationPeer.cs (3)
74if (((RadioButton)Owner).IsChecked != true) 85if (((RadioButton)Owner).IsChecked == true) 98return ((RadioButton)Owner).IsChecked == true;
System\Windows\Automation\Peers\ToggleButtonAutomationPeer.cs (1)
67return ConvertToToggleState(owner.IsChecked);
System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
178bool? uneditedValue = checkBox.IsChecked;
System\Windows\Controls\FlowDocumentReader.cs (2)
1313if(_findButton != null && _findButton.IsChecked.HasValue && _findButton.IsChecked.Value != enable)
System\Windows\Controls\Primitives\ToggleButton.cs (6)
159private static object OnGetIsChecked(DependencyObject d) {return ((ToggleButton)d).IsChecked;} 276var isChecked = IsChecked; 306isChecked = IsChecked; 315isChecked = IsChecked; 346if (IsChecked == true) 349isChecked = IsChecked.HasValue; // HasValue returns true if IsChecked==false
System\Windows\Controls\RadioButton.cs (2)
164if (rb != this && (rb.IsChecked == true) && rootScope == KeyboardNavigation.GetVisualRoot(rb) && rootScope != null) 182if (rb != null && rb != this && string.IsNullOrEmpty(rb.GroupName) && (rb.IsChecked == true))