Selecting options with checkboxes and radio buttons

Checkboxes and radio buttons are some of the most recognizable and useful controls. Checkboxes allow selecting or unselecting options, while radio buttons allow selecting one option out of several. Let's see how to use them in WPF.

Getting ready

Make sure Visual Studio is up and running.

How to do it…

We'll create a simple tea choosing application that uses checkboxes and radio buttons to make some tea:

  1. Create a new WPF application named CH04.SelectingOptions.
  2. Open MainWindow.xaml. Replace the Grid with a StackPanel.
  3. Add a GroupBox with some tea type options to the StackPanel, as follows:
    <GroupBox Header="What kind of tea would you like?"> <StackPanel Margin="4" x:Name="_teaTypePanel"> <RadioButton ...

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.