How to create a GroupBox in WPF?

The GroupBox element in XAML represents a GroupBox control. The following code snippet creates a GroupBox control, sets its background and font. The code also sets the header by using GroupBox.Header.

<Window x:Class="GroupBoxSample.Window1"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="Window1" Height="300" Width="300">

    <Grid>

        <GroupBox Margin="10,10,10,10" FontSize="16" FontWeight="Bold"

                  Background="LightGray">

            <GroupBox.Header>               

               Mindcracker Network

            </GroupBox.Header>

           

            <TextBlock FontSize="12" FontWeight="Regular">

                This is a group box control content.               

            </TextBlock>            

        

        </GroupBox>

 

    </Grid>

</Window>