3

是否可以在运行时在 ASP.NET DataGridView 中设置列​​或单元格的 DataFormatString 属性?

4

3 回答 3

2

这应该有效。

BoundField priceField = grid.Columns[0] as BoundField;
priceField.DataFormatString = "{0:c}";
priceField.HtmlEncode = false;
grid.DataSource = list;
grid.DataBind();

通过http://geekswithblogs.net/michelotti/archive/2006/03/30/73896.aspx找到

于 2009-08-13T19:55:59.037 回答
1

据我所知,您可能想尝试在 RowDataBound 事件上执行列格式设置,尽管可能会降低性能。如果有人可以提供更简单的方法,我会很高兴。

于 2009-08-13T15:57:14.813 回答
1

似乎没有办法设置 DataFormatString 属性。我最终将数据源绑定到表,然后遍历所有单元格并手动格式化它们:

DataGridView.AutoGenerateColumns = true;
DataGridView.DataSource = dbconnection.getDataReader();
DataGridView.DataBind();

int result;

for (int i = 0; i < DataGridView.Rows.Count; i++)
{
  foreach (TableCell c in DataGridView.Rows[i].Cells)
  {
    if (int.TryParse(c.Text, out result))
    {
      c.Text = String.Format("{0:n0}", result);
    }
  }
}

这种方法对我来说非常有效。不确定如何使用大型数据集进行扩展,尽管我猜它会很好。

于 2009-08-24T21:29:18.290 回答