Using data templates
In previous recipes we showed some Person
objects as strings, whether it's the ToString
implementation or some specific property. Text is not the only option. Even with text, we may want to change its properties, such as fonts and colors. WPF provides a powerful way to visualize data using the concept of data templates. In this recipe, we'll see how to create and use such templates.
Getting ready
Make sure Visual Studio is up and running.
How to do it...
We'll create a simple application that shows Person
objects in a more interesting way using data templates.
- Create a new WPF Application named
CH06.DataTemplates
. - Add a new class named
Person
, with anAge
andName
properties, similar to the previous recipe. - Open
MainWindow.xaml
Get Windows Presentation Foundation 4.5 Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.