[]
MultiSelect allows you to add, remove, and access specific items with minimal code. It also lets you display or hide the check boxes and dropdown button appearing in the control. Learn how they can be implemented.
To add items to the MultiSelect control, use Add method of ItemCollection class as shown in the following code. For example, the following code adds a name “Patrick Smith” in dropdown list of the MultiSelect control with the email id:
xml
<c1:C1MultiSelect x:Name="mselect" Height="100" Width="350" >
<c1:C1MultiSelectItem Content="Patrick Smith <psmith1988@mail.ru>"/>
</c1:C1MultiSelect>
csharp
mselect.Items.Add("Patrick Smith <psmith1988@mail.ru>");
By default, editing is enabled in the MultiSelect control. However, you can choose to allow or restrict a user to edit tags in the control header through IsTagEditable property.
xml
<c1:C1MultiSelect x:Name="mselect" IsTagEditable="False" Height="100" Width="350"></c1:C1MultiSelect>
csharp
mselect.IsTagEditable = false;
MultiSelect lets you delete an item from the list using RemoveAt method of ItemCollection class as shown in the following code. The method takes one argument, index, which specifies the item to remove. For example, the following code deletes sixth entry from the list.
mselect.Items.RemoveAt(5);
To remove all the entries from the list, use Clear method as shown in the following code:
mselect.Items.Clear();
By default, list of items in the MultiSelect control are displayed with check boxes. However, you can disable the default style by setting ShowCheckBoxes property to false.
To hide the check boxes from the list, use the following code:
xml
<c1:C1MultiSelect x:Name="mselect" ShowCheckBoxes="False" Height="100" Width="350" ></c1:C1MultiSelect>
csharp
mselect.ShowCheckBoxes = false;
MultiSelect displays the dropdown button to show the list of available items. However, you can hide the dropdown button in the control by setting ShowDropDownButton property to false.
To hide the drop down button, use the following code:
xml
<c1:C1MultiSelect x:Name="mselect" ShowDropDownButton="False" Height="100" Width="350" ></c1:C1MultiSelect>
csharp
mselect.ShowDropDownButton = false;