0

我正在尝试格式化绑定到整数的文本块。我想要的是为正数显示(+25),为负数显示(-25)。到目前为止,我已经能够使用以下 xaml 单独执行此操作:

  StringFormat={}({0})}  // shows binding in a bracket
  StringFormat=+#;-#;0   // shows the sign

组合格式的 xaml 是什么?

4

1 回答 1

1

StringFormat="({0:+#;-#;0})"确实为我工作。

于 2013-02-15T13:06:17.100 回答