2009-04-07 138 views
2

我的App.xaml中有一個全局字符串我想在UserControl xaml中使用如何引用它?WPF在xaml中使用資源變量

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

我也有一個在UserControl資源valiable我在xaml中使用這種相似的方式嗎?

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

我希望這是有道理的,基本上我有以下我想用上面的變量來替換,因爲我會用它們很多。

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

感謝,

詹姆斯

+0

相關:http://stackoverflow.com/questions/3680146/using-system-types-in-xaml-as-resources – DuckMaestro 2012-05-03 23:02:04

回答

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