【发布时间】:2021-10-01 18:31:12
【问题描述】:
如果用户没有授权,我想用特殊字符而不是数字显示价格。
我可以在下面的代码块中更改格式类型和格式字符串,但是当我尝试获取已更改列的格式字符串时。 colPRICE.DisplayFormat.GetFormatString() 等于 {0},{0} 只接受一个数值。我怎样才能挤压{0}?
colPRICE.DisplayFormat.FormatType = FormatType.Custom;
colPRICE.DisplayFormat.FormatString = "";
var formatStringPrice = colPRICE.DisplayFormat.GetFormatString();
for (int i = 0; i < gridView1.RowCount; i++)
{
gridView1.SetRowCellValue(i, "PRICE", "****");
}
【问题讨论】:
标签: c# winforms devexpress