RichTextBox选中文本时往自己的其他的位置实现拖拽

private void Form1_Load(object sender, EventArgs e)
        {
            richTextBox1.AllowDrop = true;
            richTextBox1.EnableAutoDragDrop = true;
        }
原文地址:https://www.cnblogs.com/xe2011/p/3444075.html