我想知道是否有办法在StringFormat
中使用XAML
以这种方式格式化textBlock:-999 999 999 999 $。
只有在金额为负数时才能显示“ - ”符号。
我是WPF的新手,我没有找到这种确切格式的答案。
感谢您的回答!
答案 0 :(得分:1)
请尝试以下格式:
<TextBlock Text="{Binding Number, StringFormat={}### ### ### ### $}" />
您可以在MSDN上的Custom Numeric Format Strings页面上找到更多信息。