5

我的 GridView 有 3 个绑定列:A、B 和 C。我想以粗体显示3 列的最大值。如何进行比较并将字体设置为粗体(最好在 aspx 文件中)?谢谢。

<Columns>                
<asp:BoundField DataField="A" HeaderText="A" SortExpression="A" />                
<asp:BoundField DataField="B" HeaderText="B" SortExpression="B" />
<asp:BoundField DataField="C" HeaderText="C" SortExpression="C" />
</Columns>

澄清一下:A、B 和 C 列中的任何 NUMERIC 值都可能是最大的,具体取决于行。这是我要设置为粗体的值。

例子:

3   **4**    1
**6**   2    0
**9**   1    2
4

3 回答 3

10

试试这个方法:

   protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        for (int j = 0; j < e.Row.Cells.Count; j++)
        {
            e.Row.Cells[j].Style.Add("BORDER-BOTTOM", "#aaccee 1px solid");
            e.Row.Cells[j].Style.Add("BORDER-RIGHT", "#aaccee 1px solid");
            e.Row.Cells[j].Style.Add("padding-left", "5px");
        }
    }
于 2012-04-10T17:41:50.197 回答
6

你需要代码隐藏来处理这种事情。用于RowDataBound此目的:

protected void Grid_RowDataBound(Object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        int number;
        var highestCells = e.Row.Cells.Cast<TableCell>()
            .Where(tc => int.TryParse(tc.Text, out number))
            .OrderByDescending(c => int.Parse(c.Text));
        foreach(var cell in highestCells)
            cell.Font.Bold = true;
    }
}
于 2012-04-10T17:52:45.810 回答
4

您可以在 gridview 的 rowdatabound 方法中执行此操作。理想的方法是从数据库本身获取 3 列的最大值,然后检查 rawdatabound 中的值。此网址可帮助您提供一个简短的介绍。与此类似,您可以添加条件并将该列的相应字体样式设置为粗体 http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowdatabound.aspx 在条件中你可以写这行来加粗 e.Row.Cells[2].Font.Bold = true;

于 2012-04-10T17:44:11.953 回答