Filtering CollectionView Data in Silverlight 4
If you are using Silverlight's ListBox control, you can filter the data in a CollectionViewSource object using just a little bit of simple code. For this example, I will be using a simple Product class with two properties, and a list of Product objects using the Generic List class. Try this out by creating a Product class as shown in the following code:
public class Product {
public Product(int id, string name) {
ProductId = id;
ProductName = name;
}
public int ProductId { get; set; }
public string ProductName { get; set; }
}
Create a collection class that initializes a property called DataCollection with some sample data as shown in the code below:
public class Products : List<Product>
{
public Products()
{
InitCollection();
}
public List<Product> DataCollection { get; set; }
List<Product> InitCollection()
{
DataCollection = new List<Product>();
DataCollection.Add(new Product(1, "PDSA Framework"));
DataCollection.Add(new Product(2, "Haystack"));
DataCollection.Add(new Product(3, "Fundamentals of .NET eBook"));
DataCollection.Add(new Product(4, "WPF Fundamentals Video"));
DataCollection.Add(new Product(5, "Fundamentals of ASP.NET Security eBook"));
DataCollection.Add(new Product(6, "Fundamentals of SQL Server eBook"));
DataCollection.Add(new Product(7, "Microsoft VS.NET 2010"));
DataCollection.Add(new Product(8, "Microsoft Silverlight 4"));
return DataCollection;
}
}
The screen shot shown in Figure 1 is a Silverlight page that allows the user to filter the Product data by typing in a value into the text box, then clicking on the Search button.
Figure 1: Filter Collection Data in Silverlight
If the user fills in a partial product name, such as the letter 'F' and then clicks on the Search button, the results are as shown in Figure 2.
Figure 2: The data filtered in Silverlight
You next need to add an XML namespace to your MainPage.xaml so you can reference the Products class.
xmlns:local="clr-namespace:SLFilterData"
The 'local' namespace is the name of the project that you created (in my case 'SLFilterData'). Create a UserControl.Resources section in your Silverlight page that looks like the following:
<UserControl.Resources>
<local:Products x:Key="products" />
<CollectionViewSource x:Key="prodCollection"
Source="{Binding Source={StaticResource products},
Path=DataCollection}">
</CollectionViewSource>
</UserControl.Resources>
The first line of code in the resources section creates an instance of your Products class. The constructor of the Products class calls the InitCollection method which creates the various Product objects and adds them to the DataCollection property of the Products class. Once the Products object is instantiated you now add a CollectionViewSource object in XAML using the Products object as the source of the data to this collection. A CollectionViewSource allows us to perform sorting, grouping and filtering on our collection of Product objects.
Next, you create the search area using a StackPanel, TextBlock, TextBox and a Button control:
<StackPanel Orientation="Horizontal"
Margin="10"
Grid.Row="0">
<TextBlock Text="Enter Partial Name: " />
<TextBox Width="100"
Name="txtName" />
<Button Name="btnSearch"
Content="Search"
Click="btnSearch_Click" />
</StackPanel>
Now add a list box to your XAML page and set the DisplayMemberProperty to be "ProductName" which is the property on the Product class that you wish to display in the list box.
<ListBox Margin="10"
Grid.Row="1"
Name="lstData"
DisplayMemberPath="ProductName"
ItemsSource="{Binding Source={StaticResource collProducts}}" />
Now you can write the code behind for the click event of the Seach button. In the Click event call a method name FilterData that will perform the filtering using CollectionViewSource.
private void FilterData()
{
if (lstData != null)
{
ICollectionView dataView = default(ICollectionView);
dataView = (ICollectionView)lstData.ItemsSource;
dataView.Filter = prod => ((Product)prod).ProductName.ToLower()
.StartsWith(txtName.Text.ToLower());
lstData.ItemsSource = dataView;
}
}
In the FilterData method you create an ICollectView object from the existing ItemsSource property of the list box. When you use a CollectionViewSource object in your XAML, the data is put in the collection as an object that implements the ICollectionView interface. You can then set the Filter property of the collection view to a predicate that will determine the filter on the data. After this is set, you give this new ICollectionView object to the ItemsSource property of the list box and the filter is applied. The new data is then displayed in the list box.
Summary
That's all there is to it. A simple way to allow your users to filter data from a collection with just a few lines of code!
NOTE: You can download the complete sample C# and XAML code at my website. http://www.pdsa.com/downloads. Choose Tips & Tricks, then "Filtering CollectionView Data in Silverlight 4" from the drop-down.
Good Luck with your Coding,
Paul Sheriff
** SPECIAL OFFER FOR MY BLOG READERS **
Visit http://www.pdsa.com/Event/Blog for a free eBook on "Fundamentals of N-Tier".
Past Blog Content
Blog Archive
-
2015
-
2014 (18)
-
2013 (11)
-
2012 (19)
-
2011 (29)
-
2010 (19)
-
2009 (28)
-
2008 (0)
-
2007 (14)
-
2006 (6)