I am trying to use a wpf theme using ResourceDictonary. It gets applied on TabControl, Buttons, TextInput and other controls except MessageBox. Here is how I applied the theme.
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/PresentationFramework.Aero;component/themes/aero.normalcolor.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
I also uncommented dependencyAssembly in app.manifest file, but it doesn't seem to work for me. I don't want to use Extended WPF Toolkit. Any suggestions on how I can apply the theme on MessageBox control.
IDE: Visual Studio 2010, Windows 7