我的代码当前显示如下:43521 reviews
,我希望它像这样:43,521 reviews
。我怎样才能做到这一点?并且在StringFormat
中对所有可能的格式都有完整的引用吗?找不到任何东西。谢谢。
<TextBlock Text="{Binding Reviews,StringFormat='{}{0} reviews'}"/>
最佳答案
只需像这样更改您的字符串格式:
<TextBlock Text="{Binding Reviews,StringFormat='{}{0:0,0} reviews'}"/>