我有一个ListView,其中显示了一些元素
<ListView x:Name="ListaTestiCanzone" ItemClick="TestiCanzone_ItemClick" IsItemClickEnabled="True" ItemsSource="{Binding Source={StaticResource Testo}}" SelectionChanged="TestiCanzone_SelectionChanged" Margin="0,-10,-0.167,9.667">
<StackPanel Grid.Column="1" Width="300">
<TextBlock Text="{Binding Path=NomeCanzone}" Style="{StaticResource ListViewItemTextBlockStyle}" />
<TextBlock Text="{Binding Path=NomeArtista}"/>
<TextBlock Text="{Binding Path=Anno}"/>
</StackPanel>
我在HUBSection中创建了一些Checkbox,我希望在ListView中只看到某些项目,而不是所有项目。
<CheckBox x:Name="Uomo" Content="Uomo" IsChecked="{x:Null}"/>
我如何才能在ListView中显示属性为“Sesso =”Uomo“的项目?
List<Testo> song = new List<Testo>
{
new Testo
{
Anno=2012,
NomeCanzone="Estate",
NomeArtista="Jovanotti",
Sesso="Uomo",
PercorsoFile= @"/Assets/Testi/Estate.txt"
},
new Testo
{
Anno=2012,
NomeCanzone="Terra degli uomini",
NomeArtista="Jovanotti",
Sesso="Uomo",
PercorsoFile="",
答案 0 :(得分:2)
不是直接绑定到集合,而是通过CollectionView
对象。然后将Filter
属性设置为使用复选框和条件进行求值的谓词,如MSDN中所述。
该功能类似于:
private void ShowUomoFilter(object sender, FilterEventArgs e)
{
if (checkBox1.Checked)
{
Testo item = (Testo)e.Item;
if (item.Sesso == "Uomo")
e.Accepted = true;
else
e.Accepted = false;
}
else
e.Accepted = true;
}
由于过滤器与视图相关,因此通过代码隐藏设置它是正常的。