XAML:如何从资源定义字典值

时间:2015-06-21 23:04:09

标签: c# wpf xaml

您好我已经在xaml资源中定义了IntMaping Dictionary,如下所示:

<conv:IntToTextParam.IntMaping >
<System:String x:Key="0">SomeText not from App.Resources</System:String>
</conv:IntToTextParam.IntMaping>

其中IntMapping定义为Dictionary(字符串,字符串)。我需要将文本值定义为来自app资源字典的字符串。像这样:

<conv:IntToTextParam.IntMaping >
<System:String x:Key="0">{x:Static res:Resources.SomeText}</System:String>
</conv:IntToTextParam.IntMaping>

其中res是xmlns:res =“clr-namespace:App.UI.Properties”。但我不知道该怎么做。

感谢您的帮助。

0 个答案:

没有答案