現在、ViewModelにバインドしてオブジェクトのコレクションを表示するItemsControlテンプレートを使用しています。テンプレートの一部としてToggleButtonがあります。コードビハインドのコレクション内のそのUIアイテムにバインドされているオブジェクトにアクセスしたいと思います。
これが私が配置しているコードです:
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel HorizontalAlignment="Stretch" Orientation="Horizontal">
<ToggleButton Cursor="Hand"
IsChecked="{Binding IsActive, Mode=TwoWay}"
IsEnabled="{Binding CanToggleOnProfile}"
Style="{StaticResource ProfileToggleButtonStyle}"
PreviewMouseLeftButtonUp="OnProfileToggle">
呼び出しの背後にあるコードOnProfileToggle
で、DataTemplateの特定のオブジェクトにアクセスし、それを使って何かをしたいのですが、アクセス方法(コレクション内のインデックスなど)がわかりません。 )。