Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 xaml 中显示带有千位分隔符但没有浮点的文本块中的数字。我该怎么做。我尝试了以下代码:
StringFormat={}{0:N}
它显示浮点数。
StringFormat={}{0:000'.'000}}
它显示 1234 像 001,234 怎么办?
利用
{Binding StringFormat={}{0:N0}}
关于绑定格式的好文章。
对我来说,这很有效:
Label Text="{Binding Price, StringFormat='{}{0:N0}'}"