我能夠綁定SelectedItem如果選擇模式是單一的,但如果它設置爲多個,那麼你如何綁定它?如何在mvvm中綁定多個選定項目的syncfusion xamarin表單datagrid?
這裏是我試過單一選擇模式
<sync:SfDataGrid Grid.Row="1" AutoGenerateColumns="False" AllowSorting="True"
AllowGroupExpandCollapse="True" AutoExpandGroups="True"
SelectionMode="Multiple" ColumnSizer="Star"
ItemsSource="{Binding LstItems}"
SelectedItem="{Binding Path=SelectedItem, Mode=TwoWay}"
>
<sync:SfDataGrid.Columns>
<sync:GridTextColumn HeaderText="Name" MappingName="Name" />
<sync:GridTextColumn HeaderText="MRP" MappingName="MRP"/>
<sync:GridTextColumn HeaderText="Category" MappingName="Category" Width="0"/>
</sync:SfDataGrid.Columns>
<sync:SfDataGrid.GroupColumnDescriptions>
<sync:GroupColumnDescription ColumnName="Category"/>
</sync:SfDataGrid.GroupColumnDescriptions>
</sync:SfDataGrid>
在上面的XAML中,選擇模式設定爲多,但我無法得到在XAML的SelectedItems這裏提到
https://help.syncfusion.com/xamarin/sfdatagrid/selection
你不能在nuget中找到Xamarin.Behaviors,而是使用Corcav.Behaviors(創建Xamarin.Behaviors的開發者)。 –