标签: wpf xaml binding resources
我知道常规资源的使用如下:
Text="{x:Static prop:Resources.xxx}"
有没有办法在XAML的资源文件中使用带有参数的资源?
XAML
答案 0 :(得分:2)
您应该使用StringFormat作为:
Text="{Binding Path=YourParameter, StringFormat='{x:Static prop:Resources.xxx}'}"