19 lines
437 B
C#
19 lines
437 B
C#
![]() |
using System.Windows;
|
|||
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace SWS.CustomControl
|
|||
|
{
|
|||
|
public class MultiSelectListBox:ListBox
|
|||
|
{
|
|||
|
protected override bool IsItemItsOwnContainerOverride(object item)
|
|||
|
{
|
|||
|
return item is MultiSelectComboBoxItem;
|
|||
|
}
|
|||
|
|
|||
|
protected override DependencyObject GetContainerForItemOverride()
|
|||
|
{
|
|||
|
return new MultiSelectComboBoxItem();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|