4 instantiations of CheckBox
PresentationFramework (3)
src\Framework\System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
102
checkBox = new
CheckBox
();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2543
bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.
CheckBox
(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1165
case KnownElements.CheckBox: o = new System.Windows.Controls.
CheckBox
(); break;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagPanel.cs (1)
55
CheckBox checkBox = new
CheckBox
();
33 references to CheckBox
PresentationFramework (28)
src\Framework\System\Windows\Automation\Peers\CheckBoxAutomationPeer.cs (1)
21
public CheckBoxAutomationPeer(
CheckBox
owner): base(owner)
src\Framework\System\Windows\Controls\CheckBox.cs (4)
41
DefaultStyleKeyProperty.OverrideMetadata(typeof(
CheckBox
), new FrameworkPropertyMetadata(typeof(
CheckBox
)));
42
_dType = DependencyObjectType.FromSystemTypeInternal(typeof(
CheckBox
));
44
KeyboardNavigation.AcceptsReturnProperty.OverrideMetadata(typeof(
CheckBox
), new FrameworkPropertyMetadata(BooleanBoxes.FalseBox));
src\Framework\System\Windows\Controls\DataGridCheckBoxColumn.cs (16)
38
Style style = new Style(typeof(
CheckBox
));
43
style.Setters.Add(new Setter(
CheckBox
.HorizontalAlignmentProperty, HorizontalAlignment.Center));
44
style.Setters.Add(new Setter(
CheckBox
.VerticalAlignmentProperty, VerticalAlignment.Top));
64
Style style = new Style(typeof(
CheckBox
));
66
style.Setters.Add(new Setter(
CheckBox
.HorizontalAlignmentProperty, HorizontalAlignment.Center));
67
style.Setters.Add(new Setter(
CheckBox
.VerticalAlignmentProperty, VerticalAlignment.Top));
97
private
CheckBox
GenerateCheckBox(bool isEditing, DataGridCell cell)
99
CheckBox
checkBox = (cell != null) ? (cell.Content as
CheckBox
) : null;
108
ApplyBinding(checkBox,
CheckBox
.IsCheckedProperty);
119
var
checkBox = cell.Content as
CheckBox
;
141
CheckBox
.IsThreeStateProperty.AddOwner(
163
CheckBox
checkBox = editingElement as
CheckBox
;
199
private static bool IsMouseOver(
CheckBox
checkBox, RoutedEventArgs e)
src\Framework\System\Windows\Controls\ToolBar.cs (1)
494
else if (feType == typeof(
CheckBox
))
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
166
case 74: t = () => typeof(
CheckBox
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4241
Type type = typeof(System.Windows.Controls.
CheckBox
);
4242
DependencyProperty dp = System.Windows.Controls.
CheckBox
.ContentProperty;
4244
this.GetXamlType(typeof(System.Windows.Controls.
CheckBox
)), // DeclaringType
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2541
typeof(System.Windows.Controls.
CheckBox
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5618
case KnownElements.CheckBox: t = typeof(System.Windows.Controls.
CheckBox
); break;
System.Activities.Presentation (5)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagPanel.cs (5)
55
CheckBox
checkBox = new CheckBox();
64
checkBox.SetBinding(
CheckBox
.IsCheckedProperty, binding);
83
if (str.Contains((panel.Children[this.index] as
CheckBox
).Content.ToString().ToUpperInvariant()))
99
if ((i != this.index && ((bool)(panel.Children[i] as
CheckBox
).IsChecked)) ||
106
str += (panel.Children[i] as
CheckBox
).Content.ToString();