#395 – Rich ListBox Content using Data Binding, part I
September 27, 2011 Leave a comment
In talking about the SnapsToDevicePixels property, I used as an example a ListBox that contained a list of movies. Each entry in the ListBox had a number of data items related to the movie, including a thumbnail.
Let’s look at how to create this in WPF. To start with, we need a class that stores information about an individual movie. We’re going to use data binding to bind to instances of this class, and we want the binding to update when elements of the class change, so we implement the INotifyPropertyChanged interface.
public class Movie : INotifyPropertyChanged { private string title; public string Title { get { return title; } set { if (value != title) { title = value; OnPropertyChanged("Title"); } } } public int year; public int Year { get { return year; } set { if (value != year) { year = value; OnPropertyChanged("Year"); } } } private Uri image; public Uri Image { get { return image; } set { if (value != image) { image = value; OnPropertyChanged("Image"); } } } private string actorLead; public string ActorLead { get { return actorLead; } set { if (value != actorLead) { actorLead = value; OnPropertyChanged("ActorLead"); } } } private string actressLead; public string ActressLead { get { return actressLead; } set { if (value != actressLead) { actressLead = value; OnPropertyChanged("ActressLead"); } } } private string director; public string Director { get { return director; } set { if (value != director) { director = value; OnPropertyChanged("Director"); } } } public event PropertyChangedEventHandler PropertyChanged = delegate { }; private void OnPropertyChanged(string prop) { PropertyChanged(this, new PropertyChangedEventArgs(prop)); } public Movie(string title, int year, Uri image, string actorLead, string actressLead, string director) { Title = title; Year = year; Image = image; ActorLead = actorLead; ActressLead = actressLead; Director = director; } }