Gus
Gus

Reputation: 10659

WPF: Style based on another one in a separate assembly

Assembly A - ResourceDictionary contains StyleA style.
Assembly B - ResourceDictionary.MergedDictionaries to merge resources from Assembly A into B.

I would like to create a style in Assembly B "based on" StyleA. Is it possible?

I am trying to create this style:

<Style x:Key="StyleB" BasedOn="{StaticResource StyleA}">
   <Setter Property="Button.Foreground" Value="Khaki"/>
</Style>

But I get a XamlParseException exception at run-time, if I use StyleB:

Cannot convert the value in attribute 'Style' to object of type 'System.Windows.Style'. Can only base on a Style with target type that is base type 'IFrameworkInputElement'. Error at object 'System.Windows.Controls.Button' in markup file 'SamSeekApp;component/mainwindow.xaml'

Upvotes: 20

Views: 14255

Answers (1)

Richard Davis
Richard Davis

Reputation: 496

Try adding TargetType="{x:Type Button}" to your 'StyleB'.

Upvotes: 42

Related Questions