纯粹在xaml中连接文字和静态资源字符串

时间:2011-09-12 09:28:16

标签: c# wpf xaml binding

我试过这个:

Sets literally Show {Binding Source={StaticResource AppInfoer}, Path=Title}
<MenuItem Header="Show {Binding Source={StaticResource AppInfoer}, Path=Title}" 
Command="{StaticResource ShowWindowCommand}" CommandParameter="Open" />

鉴于Header="{Binding Source={StaticResource AppInfoer}, Path=Title}"很好地解决了“主应用程序”,我怎么能成功

  • 前置文字字符串“Show”
  • {Binding Source={StaticResource AppInfoer}, Path=Title}
  • 的字符串输出

我希望没有额外的代码隐藏解决方案,一个涉及只是xaml一两行的解决方案?

1 个答案:

答案 0 :(得分:2)

您是否尝试过使用StringFormat

{Binding Source={StaticResource AppInfoer}, Path=Title, StringFormat=Show {0}}