Using GroupBox Header : GroupBox « Windows Presentation Foundation « VB.Net Tutorial






<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Center" VerticalAlignment="Center">

<StackPanel Orientation="Horizontal">
  <GroupBox Header="Glass">
    <Border Margin="2" Background="White" Padding="3">
      <StackPanel>
        <RadioButton Content="Half-full" IsChecked="True" />
        <RadioButton Content="Half-empty" />
      </StackPanel>
    </Border>
  </GroupBox>
</StackPanel>
</Page>
WPF Using Group Box Header








16.39.GroupBox
16.39.1.Place a Group Box Around a Set of UI ElementsPlace a Group Box Around a Set of UI Elements
16.39.2.Using GroupBox HeaderUsing GroupBox Header