リストボックスに追加されるすべてのアイテムのチェックボックスのコンテンツ値をバインドするにはどうすればよいですか?
<ListBox BorderThickness="2" Height="389"
HorizontalAlignment="Left" Margin="10,10,0,0"
Name="lboIssues" VerticalAlignment="Top" Width="175"
SelectionMode="Multiple" ItemsSource="{Binding Mode=OneWay}">
次に、これが私の ItemTemplate です
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Margin="0,5,0,5" Orientation="Horizontal" >
<CheckBox Name="checkbox"
Content="{Binding Path=Value, Mode=OneWay}"
VerticalContentAlignment="Center"
Margin="0,0,5,0"
Width="Auto"
IsChecked="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type ListBoxItem}}, Path=IsSelected}"
IsTabStop="False" Checked="FilterCheckbox_CheckChanged"
Unchecked="FilterCheckbox_CheckChanged"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>`
確認したところ、チェックボックスのコンテンツ値は空白でした。