vote up 0 vote down star

Hello,

I'm trying to add two Datatriggers to my WPF Window. Normally, this would work via adding

`<Style TargetType="{x:Type TextBlock}"></Style>`

to the Window.Resources. In this case, I already have

`<ResourceDictionary Source="/PresentationFramework.Aero, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=MSIL;component/themes/aero.normalcolor.xaml" />`

in it. Is there a way to override the definitions from there?

Thanks a lot!

Cheers

flag

1 Answer

vote up 0 vote down check

Try this:

<ResourceDictionary>
  <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="/PresentationFramework.Aero, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=MSIL;component/themes/aero.normalcolor.xaml"/>
  </ResourceDictionary.MergedDictionaries>
  <!-- Other stuff here -->
  <Style .../>
</ResourceDictionary>
link|flag
Great! This works. Thank you. – Joseph Melettukunnel Jul 16 at 14:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.