Wpf MVVM stringformat for -999 999 999 999 $

时间:2013-09-30 15:12:54

标签: wpf vb.net xaml mvvm string-formatting

我想知道是否有办法在StringFormat中使用XAML以这种方式格式化textBlock:-999 999 999 999 $。

只有在金额为负数时才能显示“ - ”符号。

我是WPF的新手,我没有找到这种确切格式的答案。

感谢您的回答!

1 个答案:

答案 0 :(得分:1)

请尝试以下格式:

<TextBlock Text="{Binding Number, StringFormat={}### ### ### ### $}" />

您可以在MSDN上的Custom Numeric Format Strings页面上找到更多信息。