ResourceDictionary Source Binding to Module (for Localization)
问题 I have a XAML Window that has a set of strings that are bound to objects like so: <Label Content="{StaticResource LabelUserName}" HorizontalAlignment="Right" Name="Label1" VerticalAlignment="Center" /> This code works fine when I define my ResouceDictionary like this: <Window.Resources> <ResourceDictionary > <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/Strings/Strings_en-US.xaml" /> </ResourceDictionary.MergedDictionaries> <ObjectDataProvider x:Key="objLogon"