0
我想獲得GridControl中選定的對象列表(DevExpress)綁定到GridControl中的選定行
你知道我該怎麼做嗎?
<dxg:GridControl ItemsSource="{Binding Cars}">
我想獲得GridControl中選定的對象列表(DevExpress)綁定到GridControl中的選定行
你知道我該怎麼做嗎?
<dxg:GridControl ItemsSource="{Binding Cars}">
找到了解決辦法。
路1
如果有DevExpress的15.5(我不),只需使用SelectedItem
屬性:https://documentation.devexpress.com/#WPF/DevExpressXpfGridDataControlBase_SelectedItemstopic
路2
創建行爲掛鉤的TableView GridControl內部如果有:
<dxg:GridControl ItemsSource="{Binding Cars}">
<dxg:GridControl.View>
<Controls:TableView >
<i:Interaction.Behaviors>
<view:CollectionObserverBehavior SelectedItems="{Binding SelectedCars}" />
</i:Interaction.Behaviors>
</Controls:TableView>