How to merge resource files from other assemblies in Silverlight / wp7
In my app i need to merge the resource file from an开发者_高级运维 external assembly. Is it possible to do so? If the answer is yes please guide me to resolve this issue .
Try this:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/StyleResource.Styless;component/ButtonStyle.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
精彩评论