programming-examples/c-sharp/Others/GroupBox Header with mixed content.cs
2019-11-15 12:59:38 +01:00

20 lines
741 B
C#

GroupBox Header with mixed content
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
HorizontalAlignment="Center" VerticalAlignment="Center">
<GroupBox>
<GroupBox.Header>
<StackPanel Orientation="Horizontal">
<TextBlock Text="A" FontStyle="Italic" VerticalAlignment="Center" />
<TextBlock Text="B" VerticalAlignment="Center" />
<Ellipse Fill="Red" Width="25" Height="80" />
<TextBlock Text="C" VerticalAlignment="Center" FontWeight="Bold" />
<Button Content="_header" VerticalAlignment="Center" />
</StackPanel>
</GroupBox.Header>
<TextBlock Text="Boring content" />
</GroupBox>
</Page>