C#/C# WPF 실무

[C# WPF][DevExpress] Bands GridControl 제목 행 Background Color 넣기

냠냠쿠 2023. 8. 16. 07:37
728x90

		...
    
        <Style TargetType="dxg:BandHeaderControl">
            <Setter Property="Background" Value="Yellow"/>
        </Style>
        
        <Style TargetType="dxg:GridColumnHeader">
            <Setter Property="Background" Value="Yellow"/>
        </Style>
        </UserControl.Resources>
        
       <DockPanel>
            <dxg:GridControl.Bands >
                <dxg:GridControlBand Header="헤더이름">
                
                ...

 

Bands를 활용한 GridControl에서 제목 행이 두 줄일 때 두 줄 모두 Background Color 를 지정하고 싶을 때 사용 

728x90