async
async

Reputation: 45

Silverlight Listbox with multiple selection mode

Silverlight windows phone 7. Listbox with selectionmode multiple.

How to make certain items selected by default. listbx.SelectedItems seems to have only get method.

Upvotes: 1

Views: 2737

Answers (1)

Prince Ashitaka
Prince Ashitaka

Reputation: 8763

You have to use SelectionMode as Extended XAML:

<ListBox x:Name="listBox" SelectionMode="Extended">
    <ListBoxItem>First</ListBoxItem>
    <ListBoxItem>Second</ListBoxItem>
    <ListBoxItem>Third</ListBoxItem>
    <ListBoxItem>Fourth</ListBoxItem>
</ListBox>

C#:

        this.listBox.SelectedItems.Add(this.listBox.Items[1]);
        this.listBox.SelectedItems.Add(this.listBox.Items[2]);

HTH

Upvotes: 2

Related Questions