Dec 8, 2012 at 10:22 PM
Edited Dec 8, 2012 at 10:24 PM
|
In a WPF application I have the following application resources defined:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary>
<local:Bootstrapper x:Key="Bootstrapper" />
</ResourceDictionary>
<ResourceDictionary Source="/MyNamespace;component/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
however, the styles defined in Styles.xaml are not cascaded to the main window (I have tried the styles resource both before and after the bootstrapper resource).
Are resource dictionaries not cascaded by Caliburn.Micro?
|