using System.Windows; using Microsoft.Windows.Controls.Primitives; namespace Microsoft.Windows.Controls { public class CheckListBox : Selector { #region Constructors static CheckListBox() { DefaultStyleKeyProperty.OverrideMetadata(typeof(CheckListBox), new FrameworkPropertyMetadata(typeof(CheckListBox))); } public CheckListBox() { } #endregion //Constructors } }