Trouble referencing a Resource Dictionary that contains a Merged Dictionary Trouble referencing a Resource Dictionary that contains a Merged Dictionary wpf wpf

Trouble referencing a Resource Dictionary that contains a Merged Dictionary


Answered a similar question here earlier, see Adding a Merged Dictionary to a Merged Dictionary question.

This is an optimization bug, see Microsoft Connect / DefaultStyleKey style not found in inner MergedDictionaries:

On the creation of every object in XAML, if a default style is present (i.e. style w/ a key of Type) that style should be applied. As you can imagine there are several performance optimizations to make that (implied) lookup a light weight as possible. One of them is that we don’t look inside Resource Dictionaries unless they are flagged as “containing default Styles”. There is a bug: if all your default styles are nested in merged dictionaries three levels deep (or deeper) the top dictionary does not get flagged so the search skips it. The work around is to put a default Style to something, anything, in the root Dictionary.

So adding a dummy style to the root dictionary fixes this. Example

<Application x:Class="MyApp.App"               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="/CommonLibraryWpfThemes;component/Themes/Generic.xaml" />                 </ResourceDictionary.MergedDictionaries>             <!-- Dummy Style, anything you won't use goes -->             <Style TargetType="{x:Type Rectangle}" />         </ResourceDictionary>     </Application.Resources> </Application>   


Check your constructor in App.xaml.cs calls InitializeComponent() - this is what merges the resource dictionaries...


You should not have to reference generic.xaml at all, it has built-in support. This however means that it provides default styling, which you do not set explicitly. Explicitly set styles/templates need to be attainable from explicitly referenced res dictionaries.

(EDIT for clarity)

One exception to this is the App.xaml, where defined resources become accessible by the whole app, without requiring to reference any specific resource dictionary. The resource itself, would have to be accessible by name.

The reason why this fails

<Application.Resources>    <ResourceDictionary        Source="/CommonLibraryWpfThemes;component/Themes/Generic.xaml" /></Application.Resources>

is, I think, because you didn't wrap it in a MergedDictionary wrapper, adding it to merged dictionaries. Adding directly to resources works only for resources you declare locally, e.g. the styles, etc. themselves.

However, as I said before, you shouldn't have to merge generic.xaml anywhere, maybe you should just refactor brushes and other resources used outside styles, and merge only those resources in app.xaml.

Also note that styles do not have to be in generic.xaml to have "default style" behaviour - if a style with key equal to the type of the element is accessible to it (globally, or in local resources), then it will use the style as a default style. The generic.xaml is just a convenience.

Check this answer.

For other custom brushes, etc, you need to reference those resources explicitly.

You should also check the contents of the WindowDictionary.xaml, this error has a certain smell about it.