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