I have a toggle button that contains a xaml path.
I want to set the fill color of the path to the foreground color of the toggle button, so that when the button is not pressed its black, when its pressed its white.
<ToggleButton>
<Path Data="M5.08333,4.5 L10.8333,4.33333 L17.3749,8.24242 L6.97926,10.6125 C6.97926,10.6125 7.35392,5.18685 5.08333,4.5 z" Fill="#FFF4F4F5" Height="6.291" Stretch="Fill" UseLayoutRounding="False" Width="12.292"/>
</ToggleButton>
How can I do this>
You can create a
ControlTemplate
for theToggleButton
,and then configureFill
property forshapes
where in eachVisualState
.