Is there a way to add a ResourceDictionary at the Window level instead of the Application level?
I see many examples for something like this:
Application.Current.Resources.MergedDictionaries.Add(myResourceDictionary);
However, nothing like what I would expect there to be, such as:
Window.Resources.MergedDictionaries.Add(myResourceDictionary);
Thanks in advance,