Hi Just wanna hear if its possible in xaml to bind to a list, where a value has a certain value. Ex. in the following example, is it possible with Xaml only to only show the items, where Price = 20?
I'm asking because I'm going to Bind a list of object containing another list, where I only wanna show certain item, depending on there values. Therefor I'm trying to avoid a C# solution.
MainWindow.xaml
<Window x:Class="Binding_Test.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<ListView ItemsSource="{Binding}"/>
</Grid>
</Window>
MainWindow.xaml.cs
public MainWindow()
{
DataContext = BuildList();
InitializeComponent();
}
List<Product> BuildList()
{
var list = new List<Product>();
var y = 1;
for (var i = 0; i < 100; i++)
{
list.Add(new Product{Name = string.Format("Item {0}",i), Price = y++ * 10 });
if (y > 3)
y = 1;
}
return list;
}
Product.cs
public class Product
{
public string Name { get; set; }
public int Price { get; set; }
public override string ToString()
{
return string.Format("{0} \t{1}", Name, Price.ToString("C2"));
}
}
