我正在创建支持多语言的 WPF 应用程序。因此,我将所有“可翻译”字符串放入字符串资源中。
我知道如何使用 XAML 中的这些资源,但是在open 和 close 标记中使用它时遇到了麻烦。
例如:
<TextBlock FontSize="16" Padding="2, 5, 0, 0">
<Hyperlink NavigateUri="www.blabla.com/forgotpassword" RequestNavigate="Hyperlink_RequestNavigate">Click here</Hyperlink>
to reset your password!
</TextBlock>
如您所见Click here
,to reset your password!
并且位于元素标记内。我的问题是,如何从字符串资源中检索Click here
和检索?to reset your password!
这是我的字符串资源。
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:XRManager.Resources"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="Click_Here">Click here</system:String>
<system:String x:Key="Click_Here_Part_Reset_Password">to reset your password!</system:String>
</ResourceDictionary>
谢谢你的帮助...