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