I have following wpf:
<Style x:Key="HyperlinkStyle" TargetType="Hyperlink">
<Setter Property="Foreground"
Value="{StaticResource {x:Static SystemColors.ControlTextBrushKey}}"/>
<Setter Property="TextDecorations" Value="{x:Null}"/>
</Style>
<TextBlock>
<Hyperlink Command="{Binding ClickCommand, Mode=OneTime}"
Style="{StaticResource HyperlinkStyle}">
<StackPanel Orientation="Horizontal">
<Image Margin="0,2,2,0" Source="{Binding Icon}" />
<TextBlock Text="{Binding Text}" />
</StackPanel>
</Hyperlink>
</TextBlock>
The problem is that you can't see if CanClick on the ClickCommand is false.