我正在尝试格式化绑定到整数的文本块。我想要的是为正数显示(+25),为负数显示(-25)。到目前为止,我已经能够使用以下 xaml 单独执行此操作:
StringFormat={}({0})} // shows binding in a bracket
StringFormat=+#;-#;0 // shows the sign
组合格式的 xaml 是什么?
我正在尝试格式化绑定到整数的文本块。我想要的是为正数显示(+25),为负数显示(-25)。到目前为止,我已经能够使用以下 xaml 单独执行此操作:
StringFormat={}({0})} // shows binding in a bracket
StringFormat=+#;-#;0 // shows the sign
组合格式的 xaml 是什么?