如何在运行时从WPF RichTextbox中删除超链接?

时间:2011-07-14 04:36:36

标签: .net wpf richtextbox

我有一个WPF RichTextBox并使用FlowDocument我添加了Paragraph。在Paragraph内,我还添加了多个Hyperlink s。

我想在运行时删除超链接并用一些文本替换它们。 所有超链接共享相同的事件处理程序,所以我想我应该在超链接单击事件处理程序中编写超链接删除代码。

如何从单击的段落中删除特定的超链接?

1 个答案:

答案 0 :(得分:0)

我知道为时已晚,但我找到了一种更简单的删除超链接的方法:

Hyperlink hyperlink = sender as HyperLink;
// we make a selection from BEFORE the hyperlink to AFTER the hyperlink
rtb.Selection.Select(hyperlink.ElementStart, hyperlink.ElementEnd);
// we replace the hyperlink element by a simple text
rtb.Selection.Text = rtb.Selection.Text;

对我来说非常好。