당신이 그룹 상자에서 레이블 작은 크기와 그룹 상자 헤더 텍스트 크기에 맞게 그룹 상자에서 다른 모든 수 있도록하려면, 스타일 사용 : 당신이 될하기 위해 그룹 상자 헤더를 원하는 경우
<GroupBox FontSize="14" Header="Header Text">
<GroupBox.Resources>
<Style TargetType="Label">
<Setter Property="FontSize" Value="8" />
<Setter Property="FontWeight" Value="Normal" />
</Style>
</GroupBox.Resources>
<StackPanel>
<Label Text="Label Text" />
<Label Text="Another Label" />
<TextBlock Text="This will match the group header" />
</StackPanel>
</GroupBox>
을
이 두 가지 기술이 그룹 상자 헤더에 대해 하나 개의 크기, 레이블 다른 크기로 결합 될 수
<GroupBox>
<GroupBox.Header>
<TextBlock Text="Header Text" FontSize="14" />
</GroupBox.Header>
<StackPanel>
<Label Text="Label Text" />
<Label Text="Another Label" />
<TextBlock Text="This will be the default font" />
</StackPanel>
</GroupBox>
, 제 3 다음 그룹 상자의 모든 텍스트는 다른, 대신 문자열의 헤더에 대한 TextBlock의를 사용 GroupBox의 다른 모든 텍스트의 크기 (기본값) .