在我在Silverlight应用程序中的XAML绑定中,我写了类似这样的内容:
Text="{Binding TestSomething}"
TestSomething
会返回一个数字。现在我想用它来做一个句子,例如:
“我们发现了很多XYZ结果”
其中XYZ等于TestSomething
如何将string.Format
与上面的绑定结合起来生成我需要的句子。
答案 0 :(得分:4)
您可以使用StringFormat绑定规范:
Text="{Binding Path=TestSomething, StringFormat=We found this many {0} results}"