私はWPFで水をテストし始めたばかりで、エキスパンダーの展開されたプロパティとリストビュー項目の選択されたプロパティを一緒にバインドしようとしています。エキスパンダーの展開時にリストビュー項目を選択済みに設定する
これまでのところ、私は持っています
<ListView HorizontalAlignment="Stretch" Name="listView1" VerticalAlignment="Stretch" SelectionMode="Single" >
<ListView.Resources>
<Style TargetType="{x:Type ListViewItem}">
<Setter Property="IsSelected" Value="{Binding Path=IsExpanded, Mode=TwoWay}"/>
</Style>
</ListView.Resources>
<ListView.ItemTemplate>
<DataTemplate>
<Expander>
<TextBlock Text="{Binding Name}"></TextBlock>
</Expander>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
しかし、バインディングでエキスパンダーを参照する方法がわかりません。正しい方向への助けやナッジをいただければ幸いです。
ありがとう