How to set default WPF Window Style in app.xaml? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:11:19Zhttp://stackoverflow.com/feeds/question/431940http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431940/how-to-set-default-wpf-window-style-in-app-xaml5How to set default WPF Window Style in app.xaml?NoizWaves2009-01-10T23:11:22Z2009-03-23T17:24:45Z
<p>Hi, I am trying to set the default Style for every window in my WPF Windows application in my app.xaml. So far i have this in app.xaml:</p>
<pre><code><Application.Resources>
<ResourceDictionary>
<Style x:Key="WindowStyle" TargetType="{x:Type Window}">
<Setter Property="Background" Value="Blue" />
</Style>
</ResourceDictionary>
</Application.Resources>
</code></pre>
<p>I can get the window to appear with this style when running the app (but not is VS designer) by specifically telling the window to use this style via:</p>
<pre><code>Style="{DynamicResource WindowStyle}
</code></pre>
<p>This works, but it's not idea. So how do I:</p>
<ol>
<li>Have all windows automatically use the style (so i don't have to specify it on every window)?</li>
<li>Have VS designer show the style?</li>
</ol>
<p>Thanks!</p>
http://stackoverflow.com/questions/431940/how-to-set-default-wpf-window-style-in-app-xaml/431957#4319571Answer by Ray Booysen for How to set default WPF Window Style in app.xaml?Ray Booysen2009-01-10T23:23:18Z2009-01-10T23:23:18Z<p>Hi</p>
<p>The designer is not working because you're specifying a DynamicResource. Please change this to StaticResource and all will be well. </p>
<p>To apply to all windows, you should remove the x:Key from the style. Setting the TargetType implicitly sets the x:Key to whatever is in TargetType. However, in my tests, this is not working, so I am looking into it.</p>
<p>If I set the TargetType to x:Type TextBlock, the designer works perfectly, it just seems to be the Window that is showing different behaviour.</p>
http://stackoverflow.com/questions/431940/how-to-set-default-wpf-window-style-in-app-xaml/460750#4607504Answer by Gishu for How to set default WPF Window Style in app.xaml?Gishu2009-01-20T10:34:40Z2009-01-20T10:34:40Z<p>To add on to what Ray says: </p>
<p>For the Styles, you either need to supply a Key/ID or specify a TargetType. </p>
<blockquote>
<p>If a FrameworkElement does not have an
explicitly specified Style, it will
always look for a Style resource,
using its own type as the key<br />
- Programming WPF (Sells, Griffith)</p>
</blockquote>
<p>If you supply a TargetType, all instances of that type will have the style applied. However derived types will not... it seems. <code><Style TargetType="{x:Type Window}"></code> will not work for all your custom derivations/windows. <code><Style TargetType="{x:Type local:MyWindow}"></code> will apply to only MyWindow. So the options are </p>
<ul>
<li>Use a Keyed Style that you specify as the Style property of <strong>every</strong> window you want to apply the style. The designer will show the styled window.</li>
</ul>
<p>.</p>
<pre><code> <Application.Resources>
<Style x:Key="MyWindowStyle">
<Setter Property="Control.Background" Value="PaleGreen"/>
<Setter Property="Window.Title" Value="Styled Window"/>
</Style>
</Application.Resources> ...
<Window x:Class="MyNS.MyWindow" Style="{StaticResource MyWindowStyleKey}"> ...
</code></pre>
<ul>
<li>Or you could derive from a custom BaseWindow class (which has <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/c45910f8-3619-4834-992a-19a0f042340e/" rel="nofollow">its own quirks</a>), where you set the Style property during the Ctor/Initialization/Load stage once. All Derivations would then automatically have the style applied. <strong>But the designer won't take notice of your style</strong> You need to run your app to see the style being applied.. I'm guessing the designer just runs InitializeComponent (which is auto/designer generated code) so XAML is applied but not custom code-behind.</li>
</ul>
<p>So I'd say explicitly specified styles are the least work. You can anyways change aspects of the Style centrally.</p>