0

如何使 C1flexgrid 中的行或列具有粗体格式字体?

我的意思是,我有这样的编码:

Com_B1B2.Parameters("Param1").Value = gDate2
Com_B1B2.ParameterCheck = True

OraDA = New OracleDataAdapter(Com_B1B2)
OraDA.Fill(OraDT)

VLX_B1B2.DataSource = OraDT

VLX_B1B2.Cols(0).Width = 0

任何人都可以帮忙吗?

4

3 回答 3

2

要使任何行/列的字体加粗,您可以使用以下代码段:

void MakeColumnBold(int ColNo, C1FlexGrid grid)
{
  CellStyle cs = grid.Cols[ColNo].StyleNew;
  cs.Font = new Font(grid.Font.Name, grid.Font.Size, FontStyle.Bold);
}

void MakeRowBold(int RowNo, C1FlexGrid grid)
{
  CellStyle cs = grid.Rows[RowNo].StyleNew;
  cs.Font = new Font(grid.Font.Name, grid.Font.Size, FontStyle.Bold);
}
于 2014-09-15T13:01:41.893 回答
2

您可以处理C1Flexgrid的OwnerDrawCell事件,然后将不同的字体样式分配给所需的行/列。

有关完整的实现,请参阅博客文章。

问候,莫希塔

于 2014-09-15T06:28:54.527 回答
0

我认为最好只定义一次样式,而不是在每一行中复制它:

Dim cs As C1.Win.C1FlexGrid.CellStyle = grid.Styles.Add("FontBold")
cs.Font = New Font(grid.Font.Name, grid.Font.Size, FontStyle.Bold)
'to get styles elsewhere (after created once): grid.styles("FontBold")
grid.SetCellStyle(3, 4, "FontBold") 'set just one cell
grid.Cols(6).Style = cs 'set complete column
grid.Rows(6).Style = cs 'set complete row
于 2016-10-11T20:01:40.623 回答