44

这是我的情况:

<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 发送当前选定的项目?

4

1 回答 1

75

尝试这个:

  1. 命名您的列表框
  2. 将 CommandParameter 更新为:

    CommandParameter="{绑定 ElementName=listBox1,Path=SelectedItem}"

于 2013-08-15T16:59:40.997 回答