我的 WPF 窗口上有一个 ListView,我有一个按钮可以全选。首先,您如何获得按钮来选择列表视图中的所有项目。
其次,我需要我的 ViewModel 来检查所有选定的项目。如何在我的 ViewModel 中获取这些信息?
我读过您可以使用 IsSelected 属性执行此操作,但有一个错误,其中本地属性会覆盖绑定属性,因此如果之前已经选择了它,那么它似乎不会再次被选择 - 或类似的东西。看起来很复杂。研究这个问题的博客
然后我读了这篇博客Data binding to selected items这似乎也很复杂。
我想知道它是否必须如此复杂,并且这些例子是唯一的出路。
XAML:
<ListView Name="sources_ListView" Grid.RowSpan="1" ItemsSource="{Binding Path=Sources}">
<ListView.View>
<GridView>
<GridViewColumn Width="290" Header="Name">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=OriginalPath}" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Width="80" Header="Type">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Type}" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>
<Button Grid.Row="0" Grid.Column="0" Content="Select All" Name="selectAllSources_Button" Margin="3" />
<Button Grid.Row="0" Grid.Column="1" Content="Deselect All" Name="deselectAllSources_Button" Margin="3" />
<Button Grid.Row="0" Grid.Column="3" Content="Remove Selected" Name="removeSelected_Button" Margin="3" Width="100" HorizontalAlignment="Right" />