This question is locked. New answers and comments are not allowed.
Hi,
My code is pretty simple -
I get the following error - + ExceptionObject {System.ArgumentException: Value does not fall within the expected range.} System.Exception {System.ArgumentException}
I am not sure which VirtualizingWrapPanel Property needs to be setin order for this to work.
Any help would be appreciated.
Thanks, Shilpi
My code is pretty simple -
<
ListBox x:Name="booksListBox" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" >
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<telerik:VirtualizingWrapPanel ItemWidth="80"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding Author}" />
<TextBlock Text="{Binding Name}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
I get the following error - + ExceptionObject {System.ArgumentException: Value does not fall within the expected range.} System.Exception {System.ArgumentException}
I am not sure which VirtualizingWrapPanel Property needs to be setin order for this to work.
Any help would be appreciated.
Thanks, Shilpi