您好我已经在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”。但我不知道该怎么做。
感谢您的帮助。