This question is locked. New answers and comments are not allowed.
I've created a screen that displays two DataboundListBoxes like so:
I then placed that in a stack panel inside of a scrollviewer. The problem is that since the lists scroll themselves, even though they are big enough not to, it won't scroll the scrollviewer. I tried using what was recommended to prevent scrolling on Listboxes, but it doesn't seem to be working here.
Is there anyway to disable the elastic scrolling?
<telerikPrimitives:RadDataBoundListBox x:Name="scenariosList" telerikCore:InteractionEffectManager.IsInteractionEnabled="True" CheckBoxStyle="{StaticResource ItemCheckBoxStyle}" IsCheckModeEnabled="True" IsCheckModeActive="True" ItemCheckedStateChanged="scenariosList_ItemCheckedStateChanged" ItemsSource="{Binding Categories}" ScrollViewer.VerticalScrollBarVisibility="Disabled" ItemTemplate="{StaticResource MiniTileTemplate}" /><TextBlock Text="products" Style="{StaticResource PhoneTextExtraLargeStyle}" Margin="0 10 0 10"/><telerikPrimitives:RadDataBoundListBox x:Name="productsList" telerikCore:InteractionEffectManager.IsInteractionEnabled="True" CheckBoxStyle="{StaticResource ItemCheckBoxStyle}" IsCheckModeEnabled="True" IsCheckModeActive="True" ItemCheckedStateChanged="productsList_ItemCheckedStateChanged" ItemsSource="{Binding Components}" ScrollViewer.VerticalScrollBarVisibility="Disabled" ItemTemplate="{StaticResource MiniTileTemplate}"></telerikPrimitives:RadDataBoundListBox>I then placed that in a stack panel inside of a scrollviewer. The problem is that since the lists scroll themselves, even though they are big enough not to, it won't scroll the scrollviewer. I tried using what was recommended to prevent scrolling on Listboxes, but it doesn't seem to be working here.
ScrollViewer.VerticalScrollBarVisibility="Disabled"Is there anyway to disable the elastic scrolling?