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