1 type derived from CheckBox
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonCheckBox.cs (1)
31
public class RibbonCheckBox :
CheckBox
3 instantiations of CheckBox
PresentationFramework (3)
System\Windows\Controls\DataGridCheckBoxColumn.cs (1)
108
checkBox = new
CheckBox
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2659
DefaultConstructor = delegate () { return new System.Windows.Controls.
CheckBox
(); },
System\Windows\Markup\KnownTypes.cs (1)
1157
case KnownElements.CheckBox: o = new System.Windows.Controls.
CheckBox
(); break;
29 references to CheckBox
PresentationFramework (29)
System\Windows\Automation\Peers\CheckBoxAutomationPeer.cs (1)
12
public CheckBoxAutomationPeer(
CheckBox
owner): base(owner)
System\Windows\Controls\CheckBox.cs (4)
31
DefaultStyleKeyProperty.OverrideMetadata(typeof(
CheckBox
), new FrameworkPropertyMetadata(typeof(
CheckBox
)));
32
_dType = DependencyObjectType.FromSystemTypeInternal(typeof(
CheckBox
));
34
KeyboardNavigation.AcceptsReturnProperty.OverrideMetadata(typeof(
CheckBox
), new FrameworkPropertyMetadata(BooleanBoxes.FalseBox));
System\Windows\Controls\DataGridCheckBoxColumn.cs (17)
35
baseStyle = Application.Current.FindResource(typeof(
CheckBox
)) as Style;
38
Style style = new Style(typeof(
CheckBox
), baseStyle);
43
style.Setters.Add(new Setter(
CheckBox
.HorizontalAlignmentProperty, HorizontalAlignment.Center));
44
style.Setters.Add(new Setter(
CheckBox
.VerticalAlignmentProperty, VerticalAlignment.Top));
67
baseStyle = Application.Current.FindResource(typeof(
CheckBox
)) as Style;
70
Style style = new Style(typeof(
CheckBox
), baseStyle);
72
style.Setters.Add(new Setter(
CheckBox
.HorizontalAlignmentProperty, HorizontalAlignment.Center));
73
style.Setters.Add(new Setter(
CheckBox
.VerticalAlignmentProperty, VerticalAlignment.Top));
103
private
CheckBox
GenerateCheckBox(bool isEditing, DataGridCell cell)
105
CheckBox
checkBox = (cell != null) ? (cell.Content as
CheckBox
) : null;
114
ApplyBinding(checkBox,
CheckBox
.IsCheckedProperty);
123
if (cell.Content is
CheckBox
checkBox)
144
CheckBox
.IsThreeStateProperty.AddOwner(
166
CheckBox
checkBox = editingElement as
CheckBox
;
202
private static bool IsMouseOver(
CheckBox
checkBox, RoutedEventArgs e)
System\Windows\Controls\ToolBar.cs (1)
468
else if (feType == typeof(
CheckBox
))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
167
case 74: t = () => typeof(
CheckBox
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4497
Type type = typeof(System.Windows.Controls.
CheckBox
);
4498
DependencyProperty dp = System.Windows.Controls.
CheckBox
.ContentProperty;
4500
this.GetXamlType(typeof(System.Windows.Controls.
CheckBox
)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2656
typeof(System.Windows.Controls.
CheckBox
),
System\Windows\Markup\KnownTypes.cs (1)
5621
case KnownElements.CheckBox: t = typeof(System.Windows.Controls.
CheckBox
); break;