回复 3# songxin 的帖子
可以通过以下方式来指定一列数据的显示格式:
- private void grid_AutoGeneratingColumn(object sender, C1.Silverlight.DataGrid.DataGridAutoGeneratingColumnEventArgs e)
- {
- if (e.Property.Name == "XXXX")
- {
- e.Column.Format = "###,###,###";
- }
- }
复制代码 |
|