WPF在xaml中使用资源变量

时间:2009-04-07 15:59:37

标签: wpf resources

我的App.xaml中有一个全局字符串,我希望在UserControl xaml中使用它如何引用它?

<Application.Resources>
   <sys:String x:Key="Assembly">Zpg</sys:String>
</Application.Resources>

我在UserControl资源中也有一个值得我在xaml中以类似的方式使用它吗?

<UserControl.Resources>
    <sys:String x:Key="Dictionary">Test</sys:String>
</UserControl.Resources>

我希望这有点意义,基本上我有以下我想要替换参考上面的变量,因为我会使用它们很多。

Text="{LocText Key=MyString, Dict=Test, Assembly=Zpg}"

谢谢,

詹姆斯

1 个答案:

答案 0 :(得分:2)

Text="{LocText Key=MyString, Dict={StaticResource Dictionary}, Assembly={StaticResource Assembly}}"