一、綁定Currency,若是沒有字符的話,後面須要先加入{},不加的話會出問題html
<TextBlock Text="{Binding Amount, StringFormat={}{0:C}}" />
二、綁定Currency,並在前面加入一些字符,跟上面相比,沒有{}spa
<TextBlock Text="{Binding Amount, StringFormat=Total: {0:C}}" />
三、綁定日期.net
<TextBlock Text="{Binding Date, StringFormat={}{0:MM/dd/yyyy}}" />
四、綁定時間code
<TextBlock Text="{Binding Date, StringFormat={}{0:MM/dd/yyyy hh:mm tt}}" />
五、多重綁定orm
六、多重綁定中的特殊字符,如 \txml
特殊字符以下:
\a  BEL
\b  BS - Backspace
\f  FF - Formfeed
\n 
 LF, NL - Linefeed, New Line
\r 
 CR - Carriage return
\t 	 HT - Tab, Horizontal Tabelator
\v  VT - Vertical Tabelatorhtm
引用自:https://blog.csdn.net/jumtre/article/details/20624753blog