Try using VS2012.
I have a test project that I used with which I ran a resource dictionary, merging with an external assembly and in my .xaml application I have this:
<Application x:Class="WpfPackDictionaries.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="MainWindow.xaml"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="pack://application:,,,/WPFCommonLibrary;component/Vectors/Vectors.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources> </Application>
Then in my mainwindow.xaml I have this when the path draws in the style of ModifiablePathStyle:
<Window xmlns:Control="clr-namespace:WPF.Common.Control;assembly=WPFCommonLibrary" x:Class="WpfPackDictionaries.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> <Path Style="{StaticResource ModifiablePathStyle}" Fill="Red"/> <Control:Jabberwocky /> </Grid> </Window>
Intellisense / Resharper (V7.1 10/31 (Early Access Build)) recognizes the style and I don't have squigglies:

Therefore, you tried to work in VS2012?
Omegaman
source share