如何使用VB.Net为FontBold设置C1FlexGrid样式

时间:2014-09-12 07:29:47

标签: vb.net c1flexgrid

如何在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

有人可以帮忙吗?

3 个答案:

答案 0 :(得分:2)

您可以处理C1Flexgrid的OwnerDrawCell事件,然后将不同的fontstyle指定给所需的行/列。

要完整实施,请参阅this博文。

此致 Mohita

答案 1 :(得分: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);
}

答案 2 :(得分: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