最近都在做一个能在Winform的RichTextBox中添加像网页中的超链接,点击后自动解析选项关键词弹出列表框,显示候选词,实现快速录入的功能.如下图所示 richTextBox插入链接的方法 /// <summary>/// Insert a given text as a link into the RichTextBox at the current inse…
using System;
using System.Drawing;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApp2
{public partial class Form1 : Form{//文件名(包含绝对路径)。private string fileName;public Form1(){InitializeComponent();}/// &…