■ LayoutGroup 클래스에서 헤더 스타일을 수정하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<lc:LayoutGroup View="GroupBox" Orientation="Vertical" Header="Group 1"> <lc:LayoutGroup.GroupBoxStyle> <Style TargetType="lc:GroupBox"> <Setter Property="TitleBackground" Value="LightYellow" /> <Setter Property="Foreground" Value="Blue" /> <Setter Property="Background" Value="White" /> </Style> </lc:LayoutGroup.GroupBoxStyle> ... </lc:LayoutGroup> |
※ xmlns:lc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"