下列代码展示了如何使用标准的格式字符串设置列值的格式。 colPayment 列值被设置为货币金额格式,而使用长日期模式设置 colPurchaseDate 列值的格式。

结果显示如下:

C#CopyCode image复制代码
using DevExpress.Utils;
// ...
colPayment.DisplayFormat.FormatType = FormatType.Numeric;
colPayment.DisplayFormat.FormatString = "c2";
colPurchaseDate.DisplayFormat.FormatType = FormatType.DateTime;
colPurchaseDate.DisplayFormat.FormatString = "D";
Visual BasicCopyCode image复制代码
Imports DevExpress.Utils
' ...
colPayment.DisplayFormat.FormatType = FormatType.Numeric
colPayment.DisplayFormat.FormatString = "c2"
colPurchaseDate.DisplayFormat.FormatType = FormatType.DateTime
colPurchaseDate.DisplayFormat.FormatString = "D"