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






Using GroupBox Header

Using GroupBox Header
      

<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>

   
    
    
    
    
    
  








Related examples in the same category

1.Place a Group Box Around a Set of UI ElementsPlace a Group Box Around a Set of UI Elements