tags:

views:

11

answers:

1

Is there any order of execution for the trigger inside a controlTemplate of Style?. eg. IsMouseOver trigger should comes first after thenat IsSelected anything like that?

+2  A: 

Triggers are evaluated in the order they are declared, so if multiple triggers set the same property then only the last one will take effect. If they are setting different properties then the order does not matter.

Quartermeister