WinRt:如何在RichEditBox上添加和删除链接

本文关键字:添加 删除 链接 RichEditBox WinRt | 更新日期: 2023-09-27 18:29:04

我花了一些时间在问题上:如何将RichEditBox中的选择转换为超链接,以及如何再次删除此链接。

WinRt:如何在RichEditBox上添加和删除链接

解决方案很简单。但也有一些变通办法需要考虑:

public void InsertLink(RichEditBox control, string url) 
{
  //Check some conditions - else property assignment crashes
  if (string.IsNullOrEmpty(url)) return; 
  if (string.IsNullOrEmpty(control.Document.Selection.Text)) return; 
  control.Document.Selection.Link = "'"" + url + "'"";
}
public void RemoveLink(RichEditBox control) 
{
  //Can only set Link to empty string, if a link is assigned, 
  //else property assignment crashes
  if (string.IsNullOrEmpty(control.Document.Selection.Link)) return; 
  control.Document.Selection.Link = "";
}