10 references to IsCheckedProperty
PresentationFramework (9)
src\Framework\System\Windows\Automation\Peers\RadioButtonAutomationPeer.cs (1)
62((RadioButton)Owner).SetCurrentValueInternal(RadioButton.IsCheckedProperty, MS.Internal.KnownBoxes.BooleanBoxes.TrueBox);
src\Framework\System\Windows\Controls\CheckBox.cs (2)
86SetCurrentValueInternal(IsCheckedProperty, BooleanBoxes.TrueBox); 92SetCurrentValueInternal(IsCheckedProperty, BooleanBoxes.FalseBox);
src\Framework\System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
108ApplyBinding(checkBox, CheckBox.IsCheckedProperty);
src\Framework\System\Windows\Controls\Primitives\ToggleButton.cs (3)
149object value = GetValue(IsCheckedProperty); 157SetValue(IsCheckedProperty, value.HasValue ? BooleanBoxes.Box(value.Value) : null); 352SetCurrentValueInternal(IsCheckedProperty, isChecked);
src\Framework\System\Windows\Controls\RadioButton.cs (2)
188SetCurrentValueInternal(IsCheckedProperty, MS.Internal.KnownBoxes.BooleanBoxes.FalseBox); 252SetCurrentValueInternal(IsCheckedProperty, MS.Internal.KnownBoxes.BooleanBoxes.TrueBox);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagPanel.cs (1)
64checkBox.SetBinding(CheckBox.IsCheckedProperty, binding);