Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • Yeah, I'm doing it by load dictionary in app resources (because it contains data for multiple windows) and use dynamic resource cause it's load at runtime depending of skin. And it doesn't work :( Commented Apr 21, 2015 at 17:57
  • Hi I moved the ResourceDictionary from Dictionary1.xaml to App.xaml (<Application...><Application.Resources><ResourceDictionary>...</ResourceDictionary></Application.Resources></Application...>) and it works here. Commented Apr 22, 2015 at 7:55
  • 1
    Yeah, you're right. My mistake was because I loaded dictionary into Application.Current.Resources.MergedDictionaries in App() constructor. I move it into OnStartup event and then it works. Thanks Commented Apr 23, 2015 at 5:05