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.
81 lines
2.7 KiB
81 lines
2.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
using System.Windows.Controls.Primitives;
|
|
|
|
namespace Microsoft.Windows.Controls
|
|
{
|
|
public class CheckListBoxItem : ContentControl
|
|
{
|
|
static CheckListBoxItem()
|
|
{
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(CheckListBoxItem), new FrameworkPropertyMetadata(typeof(CheckListBoxItem)));
|
|
}
|
|
|
|
public CheckListBoxItem()
|
|
{
|
|
AddHandler(Mouse.MouseDownEvent, new MouseButtonEventHandler(CheckListBoxItem_MouseDown));
|
|
}
|
|
|
|
#region Properties
|
|
|
|
public static readonly DependencyProperty IsCheckedProperty = DependencyProperty.Register("IsChecked", typeof(bool), typeof(CheckListBoxItem), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnIsSelectedChanged));
|
|
public bool IsChecked
|
|
{
|
|
get { return (bool)GetValue(IsCheckedProperty); }
|
|
set { SetValue(IsCheckedProperty, value); }
|
|
}
|
|
|
|
private static void OnIsSelectedChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
|
|
{
|
|
CheckListBoxItem checkListBoxItem = o as CheckListBoxItem;
|
|
if (checkListBoxItem != null)
|
|
checkListBoxItem.OnIsSelectedChanged((bool)e.OldValue, (bool)e.NewValue);
|
|
}
|
|
|
|
protected virtual void OnIsSelectedChanged(bool oldValue, bool newValue)
|
|
{
|
|
if (newValue)
|
|
RaiseSelectionChangedEvent(new RoutedEventArgs(CheckListBox.CheckedEvent, this));
|
|
else
|
|
RaiseSelectionChangedEvent(new RoutedEventArgs(CheckListBox.UncheckedEvent, this));
|
|
}
|
|
|
|
#endregion //Properties
|
|
|
|
#region Events
|
|
|
|
public static readonly RoutedEvent SelectedEvent = CheckListBox.CheckedEvent.AddOwner(typeof(CheckListBoxItem));
|
|
public static readonly RoutedEvent UnselectedEvent = CheckListBox.UncheckedEvent.AddOwner(typeof(CheckListBoxItem));
|
|
|
|
#endregion
|
|
|
|
#region Event Hanlders
|
|
|
|
void CheckListBoxItem_MouseDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
IsChecked = !IsChecked;
|
|
}
|
|
|
|
#endregion //Event Hanlders
|
|
|
|
#region Methods
|
|
|
|
private void RaiseSelectionChangedEvent(RoutedEventArgs e)
|
|
{
|
|
base.RaiseEvent(e);
|
|
}
|
|
|
|
#endregion //Methods
|
|
}
|
|
}
|
|
|