WPF HyperLink链接下划线隐藏
Posted uftwkb24
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF HyperLink链接下划线隐藏相关的知识,希望对你有一定的参考价值。
两种方法:
1.在Grid标签内添加资源样式。
<Grid.Resources>
<Style TargetType="Hyperlink">
<Setter Property="TextBlock.TextDecorations" Value="{x:Null}"></Setter>
</Style>
</Grid.Resources>
2.在windows.resource里面添加样式。
<Window.Resources>
<Style TargetType="Hyperlink">
<Setter Property="TextBlock.TextDecorations" Value="{x:Null}"></Setter>
</Style>
</Window.Resources>
当然也可以动态资源添加,或者单独样式引入等等。
以上是关于WPF HyperLink链接下划线隐藏的主要内容,如果未能解决你的问题,请参考以下文章