How can we put a comparison in a MultiDataTrigger? Ina normal DataTrigger, we could put it as such:
<i:Interaction.Triggers>
<ei:DataTrigger Binding="{Binding Count}" Comparison="LessThan" Value="5">
<ei:ChangePropertyAction PropertyName="IsEnabled" Value="False"/>
</ei:DataTrigger>
</i:Interaction.Triggers>
But how do we put a comparison like this in a MultiDataTrigger condition? I searched, but couldn't find any solution. Please help. Thanks.
You can use
PropertyChangedTrigger
(msdn):In the below example we check condition is greater than 1 and less than 100 for Count property: