Here is my Solution explorer:
I want to make this:
ResourceDictionary dictionary = new ResourceDictionary();
dictionary.Source = new Uri("../Themes/Generic.xaml", UriKind.RelativeOrAbsolute);
Application.Current.Resources.MergedDictionaries.Add(new ResourceDictionary());
in the constructor of PageWithoutMaster.
I get error: Cannot locate resource 'themes/style/master.xaml'
What am I doing wrong? Why is it adding the style folder in the path?