2
<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>
我的ListBox包含如此多的元素,實際上滾動條應該可以工作,但它甚至不可見。 我做錯了什麼?WPF ListBox滾動條不起作用
謝謝
什麼是ListBox的父容器(Grid,Stackpanel,...)? – Jehof 2013-03-08 12:45:43
@Jehof這是一個StackPanel – Stacked 2013-03-08 13:17:25