1

我需要在运行时更改 janus gridex 单元格值吗?

例如 :

原始单元格值 => 0 运行时单元格值 => 允许

这工作在默认的 datagridview 事件中 cellformatting 。但在 janus gridex 中不存在单元格格式化事件

4

1 回答 1

5

使用以下代码:

grid.Row = row;
grid.SetValue("ColumnName", ColumnValue );

其中 row 是您要更改其单元格值的行,“ColumnName”:是列键,ColumnValue 是您要为此单元格分配的值

如果要更改 FormattingRow 事件中的值,请使用以下代码:

private void gridProject_FormattingRow(object sender, RowLoadEventArgs e)
{
    string s = e.Row.Cells["Status"].Value.ToString();
    if (s == "True")
    {
        if (e.Row.RowType == Janus.Windows.GridEX.RowType.Record)
        {
            Janus.Windows.GridEX.GridEXFormatStyle rowcol = new GridEXFormatStyle();
            rowcol.BackColor = Color.LightGreen;
            e.Row.RowStyle = rowcol;
        }

        e.Row.Cells["Status"].Text = "yes";
     }
     else
     {
          e.Row.Cells["Status"].Text = "no";
     }
}
于 2013-12-04T04:06:11.863 回答