1

我对 C# 进行编程,但在 Janus 中我希望它们的日期值小于 5 天到特定日期的行被着色。怎么办?(在 GridEx 中,Format Condition 不能这样做)

4

1 回答 1

1

您可以通过订阅 GridEX.FormattingRow 事件来完成此操作。如果事件参数中包含的行符合您的条件,请初始化该行的 RowStyle 属性并根据需要自定义样式。

void gridEX1_FormattingRow(object sender, RowLoadEventArgs e)
{
    GridEXRow row = e.Row;

    // ... evaluate if the row meets your condition

    row.RowStyle = new GridEXFormatStyle();
    row.RowStyle.BackColor = Color.Yellow; // Highlight the row
}
于 2012-08-23T00:16:57.210 回答