#904 – Placing RadioButtons in a TabControl
September 11, 2013 2 Comments
If you like, you can place a group of RadioButton controls on each tab of a TabControl. Because each tab of the TabControl can contain only a single element, you need to place the individual RadioButtons within a container (e.g. a StackPanel) which is then placed within the TabItem.
Because RadioButton selection is automatically managed, for all RadioButtons within the same container, this scheme ensures that only one RadioButton on each tab can be selected.
Below is an example.
<TabControl Margin="10"> <TabItem Header="Breakfast"> <StackPanel> <RadioButton Content="Eggs"/> <RadioButton Content="Cereal"/> <RadioButton Content="Spam"/> </StackPanel> </TabItem> <TabItem Header="Lunch"> <StackPanel> <RadioButton Content="Ham Sandwich"/> <RadioButton Content="Soup"/> <RadioButton Content="Wimpy Burger"/> </StackPanel> </TabItem> <TabItem Header="Dinner"> <StackPanel> <RadioButton Content="Steak"/> <RadioButton Content="Fish"/> <RadioButton Content="Haggis"/> </StackPanel> </TabItem> </TabControl>