All the code samples that I have found so far refer to a resource dictionary that is not in the project subfolder (the dictionary is in the root of the project). I have mine in a subfolder and I cannot figure out how to get WPF to find it. This does not work...
<Application.Resources> <ResourceDictionary Source="/Skins/Black/GlossyButtons.xaml"/> </Application.Resources>
ASP.Net caption syntax also does not work.
Is this the best way to include ResourceDictionary in your application so that WPF can find resources? My goal in this particular case is to apply the style defined in GlossyButtons.xaml to all the buttons in my application.
Bob black
source share