我的程序的主菜单使用ContextMenu
由MenuItems
. 在我的程序本地化期间(使用资源字典),我将 a 设置DynamicResource
为Header
我的每个MenuItems
. 奇怪DynamicResource
地编译,但似乎不影响本地化过程中的任何变化(语言Headers
没有改变)。
示例MenuItem
:
//I'm not sure if the x:Name or the PlacementRectangle is interfering with anything...
<ContextMenu x:Name="MainContextMenu" PlacementRectangle="{Binding RelativeSource={RelativeSource Self}}">
<MenuItem Header="{DynamicResource open}" />
</ContextMenu>
控制的约束是什么MenuItem
?它应该与它一起工作DynamicResource
吗?我的总体目标是本地化这些strings
,我该怎么做?
该程序在 WPF 中。谢谢你。
更新: 这是我的 App.xaml 文件中引用我的资源字典的方式:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Lang.en-US.xaml" />
</ResourceDictionary.MergedDictionaries>
<ResourceDictionary>
<Application.Resources>
更新 2: 我的英语资源词典中的示例字符串:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<sys:String x:Key="open">Open</sys:String>
</ResourceDictionary>
更新 3: 我如何将当前资源字典更改为西班牙语的示例函数:
private void spanishChange_Click(object sender, RoutedEventArgs e)
{
Application.Current.Resources.MergedDictionaries.Clear();
Application.Current.Resources.MergedDictionaries.Add(
(ResourceDictionary)Application.LoadComponent(new Uri("LangspES.xaml", UriKind.Relative)));
LanguageChange.FireLanguageChanged();
}