1

WPFアプリケーションに次の2つのプロパティを持つViewModelがあります。

public Customer Customer { get; set; }
public ObservableCollection<Customer> Customers { get; set; }

私のビューの中にはDXGridがあります。選択したアイテムを顧客のプロパティにバインドするにはどうすればよいですか?

4

1 に答える 1

3

プロパティを使用する必要があり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>
于 2013-03-26T12:39:53.257 に答える