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)
86
SetCurrentValueInternal(
IsCheckedProperty
, BooleanBoxes.TrueBox);
92
SetCurrentValueInternal(
IsCheckedProperty
, BooleanBoxes.FalseBox);
src\Framework\System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
108
ApplyBinding(checkBox, CheckBox.
IsCheckedProperty
);
src\Framework\System\Windows\Controls\Primitives\ToggleButton.cs (3)
149
object value = GetValue(
IsCheckedProperty
);
157
SetValue(
IsCheckedProperty
, value.HasValue ? BooleanBoxes.Box(value.Value) : null);
352
SetCurrentValueInternal(
IsCheckedProperty
, isChecked);
src\Framework\System\Windows\Controls\RadioButton.cs (2)
188
SetCurrentValueInternal(
IsCheckedProperty
, MS.Internal.KnownBoxes.BooleanBoxes.FalseBox);
252
SetCurrentValueInternal(
IsCheckedProperty
, MS.Internal.KnownBoxes.BooleanBoxes.TrueBox);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagPanel.cs (1)
64
checkBox.SetBinding(CheckBox.
IsCheckedProperty
, binding);