I am looking for a way to share ResourceDictionary between projects.
ResourceDictionary
Adding new item to shared project doesn\'t offer resource dictionary. It can be crea
This issue is that you are putting the application name. You need the project name. Below is how to do it in both XAML and code
Or
var dictionary = new ResourceDictionary(); dictionary.Source = new Uri("/SharedProject1;component/Dictionary2.xaml", UriKind.Relative);