Hi again!
This is actually a new question, and by rights, you should start a new thread, so the title is more targetted, but the answer is simple, so I'll reply here :)
It depends how you want to create the "disabled" look.
1. By Opacity:
<ControlTemplate.Triggers><Trigger Property="IsMouseOver" Value="True"><Setter TargetName="outerCircle" Property="Fill" Value="Orange"/></Trigger><Trigger Property="IsPressed" Value="True"> <Setter Property="RenderTransform"><Setter.Value><ScaleTransform ScaleX=".9" ScaleY=".9"/></Setter.Value></Setter><Setter Property="RenderTransformOrigin" Value=".5,.5"/></Trigger><Trigger Property="IsEnabled" Value="False"><Setter Property="Opacity" Value="0.5"/></Trigger></ControlTemplate.Triggers>
So I added a PropertyTrigger for IsEnabled=False
Or you could put a fuzzing layer on top like this:
<Viewbox><ContentPresenter Margin="{TemplateBinding Padding}"/></Viewbox><Ellipse x:Name="DisabledLayer" Fill="White" Opacity="0"/></Grid>
And trigger as follows:
<Trigger Property="IsEnabled" Value="False"><Setter Property="Opacity" TargetName="DisabledLayer" Value="0.5"/></Trigger>
Hope this answers your new question! :)
Otherwise start a new thread.
Best regards,
Pete
#PEJL