WPF ControlTemplate breaks style

后端 未结 1 1481
抹茶落季
抹茶落季 2020-12-16 01:14

The stuff that does work

I need to style controls of a certain type that are children of a StackPanel. I\'m using:



        
1条回答
  •  佛祖请我去吃肉
    2020-12-16 02:14

    WPF considers ControlTemplates to be a boundry, and will not apply implicit styles (styles without an x:Key) inside of templates.

    But there is one exception to this rule: anything that inherits from Control will apply implicit styles.

    So you could use a Label instead of a TextBlock, and it would apply the implicit style defined further up your XAML hierarchy, however since TextBlock inherits from FrameworkElement instead of Control, it won't apply the implicit style automatically and you have to add it manually.

    My most common way to get around this is to add an implicit style in the ControlTemplate.Resources that is BasedOn the existing implicit TextBlock style

        
            
    
    
  • Use a Label instead of a TextBlock since it's inherited from Control, so will apply implicit Styles defined outside the ControlTemplate

  • Give the base style an x:Key and use it as the base style for an implicit TextBlock styles inside the ControlTemplate. It's pretty much the same as the top solution, however it's used for base styles that have an x:Key attribute

    
    
    ...