使用带参数的资源 - WPF

时间:2014-03-27 07:52:36

标签: wpf xaml binding resources

我知道常规资源的使用如下:

Text="{x:Static prop:Resources.xxx}"

有没有办法在XAML的资源文件中使用带有参数的资源?

1 个答案:

答案 0 :(得分:2)

您应该使用StringFormat作为:

Text="{Binding Path=YourParameter, StringFormat='{x:Static prop:Resources.xxx}'}"