私はデータバインドされ、アイテムテンプレート化されたリストボックスを持っています:
<ListBox x:Name="lbLista"
ScrollViewer.VerticalScrollBarVisibility="Visible">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox IsChecked="{Binding Deleteable, Mode=TwoWay}" />
<Label Content="{Binding Name}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
アイテムは正常に表示され、ObservableCollection から取得されます。
問題は、表示されるが使用できないスクロールバーです。つかむハンドルがありません。ListBox にいくつかの ScrollView 添付プロパティを設定しようとしましたが、状況には影響しません。