本文介绍了FlowDocument 中的波浪下划线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 WPF 中,是否有一种简单的方法可以将波浪下划线(如 Word 中的拼写错误)添加到 FlowDocument
元素?有 Underline
类,但似乎没有办法设置它的样式.
In WPF, is there an easy way to add wavy underlines (like spelling errors in Word) to FlowDocument
elements? There's the Underline
class, but there seems to be no way to style it.
推荐答案
您可以使用 Robert Macne 解决方案的以下更改来创建波浪效果
You can create the wavy effect using the following changes to Robert Macne's solution
向 Grid.Resources 部分添加可视画笔:
Add a visual brush to the Grid.Resources section:
<VisualBrush x:Key="WavyBrush" Viewbox="0,0,3,2" ViewboxUnits="Absolute" Viewport="0,0.8,6,4" ViewportUnits="Absolute" TileMode="Tile">
<VisualBrush.Visual>
<Path Data="M 0,1 C 1,0 2,2 3,1" Stroke="Red" StrokeThickness="0.2" StrokeEndLineCap="Square" StrokeStartLineCap="Square" />
</VisualBrush.Visual>
</VisualBrush>
并将笔更改为:
<Pen Brush="{StaticResource WavyBrush}" Thickness="6" />
这篇关于FlowDocument 中的波浪下划线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!