How to set default WPF Window Style in app.xaml? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:11:19Z http://stackoverflow.com/feeds/question/431940 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/431940/how-to-set-default-wpf-window-style-in-app-xaml 5 How to set default WPF Window Style in app.xaml? NoizWaves 2009-01-10T23:11:22Z 2009-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>&lt;Application.Resources&gt; &lt;ResourceDictionary&gt; &lt;Style x:Key="WindowStyle" TargetType="{x:Type Window}"&gt; &lt;Setter Property="Background" Value="Blue" /&gt; &lt;/Style&gt; &lt;/ResourceDictionary&gt; &lt;/Application.Resources&gt; </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#431957 1 Answer by Ray Booysen for How to set default WPF Window Style in app.xaml? Ray Booysen 2009-01-10T23:23:18Z 2009-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#460750 4 Answer by Gishu for How to set default WPF Window Style in app.xaml? Gishu 2009-01-20T10:34:40Z 2009-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>&lt;Style TargetType="{x:Type Window}"&gt;</code> will not work for all your custom derivations/windows. <code>&lt;Style TargetType="{x:Type local:MyWindow}"&gt;</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> &lt;Application.Resources&gt; &lt;Style x:Key="MyWindowStyle"&gt; &lt;Setter Property="Control.Background" Value="PaleGreen"/&gt; &lt;Setter Property="Window.Title" Value="Styled Window"/&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; ... &lt;Window x:Class="MyNS.MyWindow" Style="{StaticResource MyWindowStyleKey}"&gt; ... </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>