开发者

Silverlight Listbox with multiple selection mode

Silverlight windows phone 7. Listbox with selectionmode multiple.

How to make certain items selected b开发者_开发知识库y default. listbx.SelectedItems seems to have only get method.


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜