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