自定义格式化字符串不显示0
我有一个绑定到数据网格视图的数据表,其中一列是 int32 列表。我想要的是让该列显示数字,并在其后显示“分钟”一词。我使用了单元格样式生成器,并以我输入的格式#分钟,这效果很好,但是具有 0 值的行不会在 # 占位符中显示任何内容,因此它看起来像列中的“分钟” 。
如何获得自定义格式的字符串以显示 0 并在其后显示文本?
I have a data table bound to a data grid view, one of the columns is a list of int32s. What I would like is to have the column display the number with the word minutes after it. I used the cell style builder and in the format i put # Minutes
, this works great however rows that have a 0 value does not display anything in the # placeholder so it looks like " Minutes" in the column.
How do I get a custom formatted string to show 0 with text after it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
0 分钟
有关详细信息,请参阅自定义数字格式字符串,零占位符与数字占位符。
try
0 Minutes
For more info, see Custom Numeric Format Strings, Zero placeholder vs. Digit placeholder.