本文介绍了数据网格号格式为nmaric的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将datagrid列格式化为以逗号表示的数字格式.这在我的最新应用程序中不起作用.我正在使用DataFormatString属性,但它返回的数字不带逗号.我什至尝试使用格式"{0:N}",但结果相同.
这是我的代码
I am trying to format a datagrid column to number format with comma. this is not working in my latest application. I am using the DataFormatString property but it returns the number without comma. I even tried the format "{0:N}", but same result.
here is my code
BoundColumn BoundColumn=new BoundColumn();
BoundColumn DataField=Store Quantity;
BoundColumn.HeaderText=Quantity;
BoundColumn.ItemStyle-HorizontalAlign=Right;
BoundColumn.DataFormatString="{0:N}";
datagrid的源是动态创建的DataTable.
The source for the datagrid is a DataTable whcih is created dynamically.
推荐答案
这篇关于数据网格号格式为nmaric的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!