0

我有一个绑定到ObservableCollection客户的列表框。用于此的 XAML 代码是:

<ListBox x:Name="lb_Customers" Height="683" ItemsSource="{Binding Path=Customers, UpdateSourceTrigger=PropertyChanged}">
     <ListBox.ItemTemplate>
          <DataTemplate>
               <Label Margin="0,0,0,0" Padding="0,0,0,0" Content="{Binding Name}" />
          </DataTemplate>
      </ListBox.ItemTemplate>
</ListBox>

这指向了我MainViewModel课堂上的一些代码:

public ObservableCollection<Customer> Customers
{
    get { return _customers; }
    set
    {
        Set("Customers", ref _customers, value);
        this.RaisePropertyChanged("Customers");
    }
}

当我在此列表框中选择客户时,我想执行一些代码来编译客户的订单历史记录。

但是,我不知道如何使用 DataBinding/CommandBinding 来做到这一点。

我的问题:我什至从哪里开始?

4

2 回答 2

1

您可以将“当前选定”对象添加到您的视图模型并将其绑定到列表框的“SelectedItem”属性。然后在“set”访问器中执行您想要的操作。

于 2013-02-07T22:28:51.100 回答
1

正如托蒙德建议的那样:

改变

<ListBox x:Name="lb_Customers" Height="683" ItemsSource="{Binding Path=Customers, UpdateSourceTrigger=PropertyChanged}">

<ListBox x:Name="lb_Customers" Height="683" ItemsSource="{Binding Path=Customers, UpdateSourceTrigger=PropertyChanged}", SelectedValue="{Binding SelectedCustomer}">

然后在您的 ViewModel 中添加:

private Customer _selectedCustomer;
public Customer SelectedCustomer
{
    get {}
    set
    {
        if (_selectedCustomer != value)
        {
            Set("SelectedCustomer", ref _selectedCustomer, value);
            this.RaisePropertyChanged("SelectedCustomer");

            // Execute other changes to the VM based on this selection...
        }
    }
}
于 2013-02-07T23:05:07.590 回答