I have problem with loading resources for UserControl from referenced assembly in Expression Blend
Here is the relevant code:
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/Referenced.Assembly;component/Resources/ResourceDictionary.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
I also tried this URI variant:
<ResourceDictionary Source="/Referenced.Assembly;Component/Resources/ResourceDictionary.xaml"/>
In Visual Studio 2008 SP1 (both code and designer) everything works fine and application is using specified resources. When loading solution and opening UserControl XAML file in Expression Blend 3, it says "Specified file not found" (or sth like that, I have localized version of .NET Framework) no other information, no exceptions are thrown while debugging Blend process in Visual Studio.
Any ideas?