I am new to WPF. I am trying to change the hyperlink's foreground colour to other colour (say gray) when the IsEnabled
property of a TextBlock
becomes false
. Shall I add a Style
to achieve my requirement?
I have stuck in here:
<TextBlock Margin="0,150,0,0"
TextAlignment="Center"
Background="White"
IsEnabled="{Binding ShowProgressRing}">
<Hyperlink x:Name="HyperLink"
Foreground="Blue"
TextDecorations="UnderLine"
FontSize="12"
FontWeight="SemiBold"
Command="{Binding Path=Command}" >
<Run Text="{Binding Path=HyperLinkText}"/>
</Hyperlink>
</TextBlock>
when Hyperlink becomes disabled, it changes color to gray by default (if default Foreground isn't overridden), so you can disabled TextBlock and it is done
if Hyperlink should have non-default active/disabled colors, you can write a style for Hyperlink with a Trigger: