Is it possible to update the zindex property of an element via a trigger in the xaml?
I thought something like below would work, but it's not:
<i:EventTrigger EventName="MouseEnter">
<ei:ChangePropertyAction TargetObject="{Binding ElementName=Grid}" PropertyName="Canvas.ZIndex" Value="999"/>
</i:EventTrigger>
thanks, voss.