繁体   English   中英

如何在运行时更改 gridview 的列格式类型和格式字符串?

[英]How to change gridview's column format type and format string on runtime?

如果用户没有授权,我想用特殊字符而不是数字来显示价格。

我可以在下面的代码块中更改格式类型和格式字符串,但是当我尝试获取已更改列的格式字符串时。 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", "****");
 }

我会保留格式并处理 GridView 的 CustomDrawCell 事件。

像这样的东西:

private void gridView1_CustomDrawCell(object sender, RowCellCustomDrawEventArgs e) 
{
   if (!DoesUserHaveAuth())
   {
     e.DisplayText = "******";
   }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM