回复 1楼CanYou2的帖子
谢谢您的反馈。
很抱歉没有可提供的示例。
标题文字加粗,居中显示。可以直接设置Column的HeaderFontWeight为Bold,HeaderHorizontalAligment属性为Center。
文字居中设置Column的HorizontalAlignment属性为Left。
如果通过Style,直接设置HeaderCellStyle就可以给标题设置样式,CellStyle给单元格设置样式。
比如:
- <Grid.Resources>
- <c1:CellStyle x:Key="redStyle"
- Background="Red" Foreground="White"
- FontWeight="Bold" HorizontalAlignment="Center" />
- <c1:CellStyle x:Key="blueStyle"
- Background="Blue" Foreground="White" FontStyle="Italic"
- HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Grid.Resources>
- <c1:C1FlexGrid Name="_flex" >
- <c1:C1FlexGrid.Columns>
- <c1:Column
- Header="Hello"
- HeaderCellStyle="{StaticResource redStyle}"
- CellStyle="{StaticResource blueStyle}" />
- </c1:C1FlexGrid.Columns>
- <c1:C1FlexGrid.Rows>
- <c1:Row/>
- <c1:Row/>
- </c1:C1FlexGrid.Rows>
- </c1:C1FlexGrid>
复制代码 |