WPF style basedon current
styles, wpf, xaml
Solution
You need to do it in this way only, there is no shortcut to do this, you have to set BasedOn attribute atleast.
Problem
Is there a way to create a style that extends the current style, i.e. not a specific style? I have a WPF application where I create styles to set some properties like borders or validation. ``` <Style TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type Button}}"> <Setter Property="Padding" Value="5,2,5,2"/> </Style> ``` Now I want to try out some Themes to see which one works best for my application. Problem is that to do that I need to change the BasedOn property on all my Styles to the style in the Theme. ``` <Style TargetType="{x:Type Button}" BasedOn="="{x:Static ns:SomeTheme.ButtonStyle}">"> <Setter Property="Padding" Value="5,2,5,2"/> </Style> ``` I can do it via search/replace but it would be nice if it could be done dynamicly.