This problem mainly bothers some, as the Visual Studio IDE tells me that it cannot find the resource, but when I create the application, I have no problems.
In my Visual Studio, I have the following: 
Here is an example of my universal application architecture:
Example.windowsPhone
->MainPage.xaml
Example.Share
-> Style.xaml -> App.Xaml has Style.xaml referenced
Eventhought I have a DmBlueBrush link on my style page, for example:
<SolidColorBrush x:Key="DmBlueBrush" Color="{StaticResource DmBlue}" />
In Visual Studio, he will tell me that he cannot find it, but when I create the application, he will find this resource. Don't I refer to something correctly for my IDE to work?
I am using Visual Studio 2013 Professional Version 12.0.31101.00 Update 4.
Change 1:
in App.xaml in Shared I Have:
<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="Theme/Styles.xaml"/> <ResourceDictionary Source="Theme/Other.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources> </Application>
Damien
source share