WPF Trigger when property value is greater than a certain amount

Posted by Micah on Stack Overflow See other posts from Stack Overflow or by Micah
Published on 2009-07-07T19:43:02Z Indexed on 2010/04/15 11:33 UTC
Read the original article Hit count: 193

Filed under:
|

I want to do something like this:

<ControlTemplate.Triggers>
    <Trigger Property="Width" Value=">25">
       <!-- Set values here -->
    </Trigger>
</ControlTemplate.Triggers>

Anyway to do something like this?

© Stack Overflow or respective owner

Related posts about wpf

Related posts about triggers