Creating a list of items
Lists are typically used to show a collection of related objects. WPF provides several controls which can be used for that purpose, such as ListBox
and ComboBox
(which can be considered classic). All these derive from ItemsControl
, which defines some basic functionality, such as an Items
property. In this recipe, we'll take a quick look at ListBox
and ComboBox
. We'll reserve a more detailed explanation for Chapter 6, Data Binding, as this is the typical way list-based controls are used in WPF.
Getting ready
Make sure Visual Studio is up and running.
How to do it…
- Create a new WPF application named
CH04.Lists
. - Open
MainWindow.Xaml
. Add two rows to the existingGrid
, as follows:<Grid.RowDefinitions> <RowDefinition Height="Auto" ...
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.