2009-04-07 11 views
2

私はApp.xamlにグローバル文字列を持っています。私はUserControl xamlで使用したいのですが、どのように参照しますか?WPF xamlでリソース変数を使用する

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

私はUserControlにも価値があります。リソースこれはxamlでsimilaの方法で使用しますか?

<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

答えて

2
Text="{LocText Key=MyString, Dict={StaticResource Dictionary}, Assembly={StaticResource Assembly}}" 
関連する問題