私の状況は次のとおりです。
<ListBox ItemsSource="{Binding Path=AvailableUsers}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Id}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Button Command="{Binding Path=Load}" CommandParameter={???? What goes here ????}/>
私が欲しいのは、現在ListBoxで選択されているIDを渡すことです。私は基本的にこのように見えるビューモデルを舞台裏に持っています:
public class ViewModel : DependencyObject
{
ICommand Load { get; set; }
// dependency property but I didn't bother to write it out like one
List<User> AvailableUsers { get; set}
}
Xamlを使用して現在選択されているアイテムを送信するにはどうすればよいですか?
これを試して:
CommandParameter = "{Binding ElementName = listBox1、Path = SelectedItem}"