WPFアプリケーションに次の2つのプロパティを持つViewModelがあります。
public Customer Customer { get; set; }
public ObservableCollection<Customer> Customers { get; set; }
私のビューの中にはDXGridがあります。選択したアイテムを顧客のプロパティにバインドするにはどうすればよいですか?
WPFアプリケーションに次の2つのプロパティを持つViewModelがあります。
public Customer Customer { get; set; }
public ObservableCollection<Customer> Customers { get; set; }
私のビューの中にはDXGridがあります。選択したアイテムを顧客のプロパティにバインドするにはどうすればよいですか?
プロパティを使用する必要がありSelectedRowsSource
ます。にバインドしObservableCollection<Customer>
ます。コードは次のようになります。
public ObservableCollection<Customer> SelectedCustomers { get; set; }
public ObservableCollection<Customer> Customers { get; set; }
...。
<dxg:GridControl ItemsSource="{Binding Customers}" AutoPopulateColumns="True">
<dxg:GridControl.View>
<dxg:TableView MultiSelectMode="Row" NavigationStyle="Row"
SelectedRowsSource="{Binding SelectedCustomers}" />
</dxg:GridControl.View>
</dxg:GridControl>