/
posted by
Nikolay Raychev
on
Apr 02, 2009 (more than a year ago)
In Silverlight 3 you can make multiple selections in a ListBox. You just need to set the SelectionMode parameter: <ListBox Margin="5" x:Name="lbTasks" ItemsSource="{Binding Tasks, ElementName=MainPageView}" SelectionMode="Multiple"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" Margin="2"> <TextBlock FontWeigh ...