Yes, in WPF GroupBox will contain a maximum of 1 element. You can include the Grid as your child, and in the grid - specify the necessary components. For example, 1 placed two buttons in a GroupBox using a Grid.
The structure of the document is shown below:

The code is as follows:
<GroupBox Header="Read Sensor" HorizontalAlignment="Left" Margin="485,4,0,0" VerticalAlignment="Top" Height="188" Width="238"> <Grid HorizontalAlignment="Left" Height="169" Margin="0,0,-13,-3" VerticalAlignment="Top" Width="229"> <Button x:Name="btnReadSensor1" Content="Read Sensor 1" HorizontalAlignment="Left" Margin="10,91,0,0" VerticalAlignment="Top" Width="207" Click="btnReadSensor1_Click" /> <Button x:Name="btnReadSensor2" Content="Read Sensor 2" HorizontalAlignment="Left" Margin="10,64,0,0" VerticalAlignment="Top" Width="207" Click="btnReadSensor2_Click" /> </Grid> </GroupBox>
Hassan Rahman Jun 26 '15 at 8:34 2015-06-26 08:34
source share