Hello,
I have set the SelectionMode="Extended" on my RadListBox; however the behavior identical to "Multiple", whereas Shift and Ctrl have no effect. Below is my Xaml...
Is this a known bug or am I missing something?
Thanks in advance,
Steve
I have set the SelectionMode="Extended" on my RadListBox; however the behavior identical to "Multiple", whereas Shift and Ctrl have no effect. Below is my Xaml...
<telerik:RadListBox ItemsSource="{Binding MasterViewModel.ElementTypeCollectionView}" Margin="3" BorderThickness="0" SelectionMode="Extended"> <telerik:RadListBox.ItemTemplate> <DataTemplate> <CheckBox Checked="CheckBox_Checked" IsChecked="{Binding RelativeSource={RelativeSource AncestorType={x:Type telerik:RadListBoxItem}}, Path=IsSelected}"> <CheckBox.Content> <TextBlock> <TextBlock.Text> <MultiBinding StringFormat="{}{0} {1}"> <Binding Path="ElementTypeCode" /> <Binding Path="Description" /> </MultiBinding> </TextBlock.Text> </TextBlock> </CheckBox.Content> </CheckBox> </DataTemplate> </telerik:RadListBox.ItemTemplate></telerik:RadListBox>Is this a known bug or am I missing something?
Thanks in advance,
Steve