You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
483 B
22 lines
483 B
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
|
|
}
|
|
}
|
|
|