I have a solution which loads a WPF App that Holds multiple resource dictionaries as merged ones. One of them contains converters, some certain collection, templates. Others contain templates and other stuff. Some of the dictionaries are loaded from other compiled DLLs.
My problem is that certain dictionaries require to use resources from other dictionaries. Although I could reference them, I would like to avoid that. I would like to have them to access each other in a centralized way.
Is there a way to do this already, that I am missing, or can someone point me to a article conceerning this?. I was googleing but found nothing
EDIT
This solution worked fine, until the moment I tried using a converter as a DynamicResource in a binding. Any sugestions?
<Image Margin="0" Width="20" DockPanel.Dock="Left" StretchDirection="Both"
Source="{Binding MessageCode, Converter={DynamicResource MessageImageConverter}, ConverterParameter=True, FallbackValue='0'}"
/>
this is the code