5 writes to IsChecked
PresentationFramework (2)
src\Framework\System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
173checkBox.IsChecked = (uneditedValue != true);
src\Framework\System\Windows\Controls\FlowDocumentReader.cs (1)
1321_findButton.IsChecked = enable;
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\KeyboardEnabledRadioButton.cs (1)
21this.IsChecked = true;
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (2)
907toggleButton.IsChecked = false; 1026toggleButton.IsChecked = false;
19 references to IsChecked
PresentationFramework (15)
src\Framework\System\Windows\Automation\Peers\RadioButtonAutomationPeer.cs (3)
71if (((RadioButton)Owner).IsChecked != true) 82if (((RadioButton)Owner).IsChecked == true) 95return ((RadioButton)Owner).IsChecked == true;
src\Framework\System\Windows\Automation\Peers\ToggleButtonAutomationPeer.cs (1)
63return ConvertToToggleState(owner.IsChecked);
src\Framework\System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
167bool? uneditedValue = checkBox.IsChecked;
src\Framework\System\Windows\Controls\FlowDocumentReader.cs (2)
1319if(_findButton != null && _findButton.IsChecked.HasValue && _findButton.IsChecked.Value != enable)
src\Framework\System\Windows\Controls\Primitives\ToggleButton.cs (6)
161private static object OnGetIsChecked(DependencyObject d) {return ((ToggleButton)d).IsChecked;} 278var isChecked = IsChecked; 308isChecked = IsChecked; 317isChecked = IsChecked; 348if (IsChecked == true) 351isChecked = IsChecked.HasValue; // HasValue returns true if IsChecked==false
src\Framework\System\Windows\Controls\RadioButton.cs (2)
160if (rb != this && (rb.IsChecked == true) && rootScope == KeyboardNavigation.GetVisualRoot(rb)) 178if (rb != null && rb != this && string.IsNullOrEmpty(rb.GroupName) && (rb.IsChecked == true))
System.Activities.Core.Presentation (2)
System\Activities\Core\Presentation\TransitionDesigner.xaml.cs (2)
306wrapper.IsExpanded = button.IsChecked.Value; 307this.ViewStateService.StoreViewState(wrapper.Item, ExpandViewStateKey, button.IsChecked.Value);
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagPanel.cs (1)
99if ((i != this.index && ((bool)(panel.Children[i] as CheckBox).IsChecked)) ||
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
1010window.Visibility = button.IsChecked.Value ? Visibility.Visible : Visibility.Hidden;