<ListBox Name="myListBx" ItemsSource="{Binding Collection}" Margin="5,5"
SelectedValuePath="ColId"
SelectedValue="{Binding Path=ColId}"
SelectionMode="Multiple"
BorderThickness="0" Background="{x:Null}" BorderBrush="{x:Null}"
ScrollViewer.VerticalScrollBarVisibility ="Auto">
<ListBox.ItemTemplate>
<DataTemplate>
// blabla
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
My ListBox contains so many elements and actually the scrollbar should work but it's not even visible. Am I doing something wrong?
Thanks
You need to put the ListBox in a Grid. The StackPanel has an
infinite height, so that the ScrollBar does not get enabled or visible.
<Grid>
<ListBox VerticalAlignment="Stretch" />
</Grid>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With