看看这个例子吧!
22.3 How do I make the RichTextBox support drag and drop
http://www.syncfusion.com/faq/winforms/search/572.asp

解决方案 »

  1.   

    this.richTextBox1.DragDrop += new System.Windows.Forms.DragEventHandler(this.richTextBox1_DragEnter);我不知道是他笔误还是什么原因这样的是可以的,虽然内部有时候还是没有出现拖动效果但这样一来,
         private void richTextBox1_DragDrop(object sender, DragEventArgs e) 
     
         { 
     
              // Loads the file into the control. 
     
              richTextBox1.LoadFile((String)e.Data.GetData("Text"), System.Windows.Forms.RichTextBoxStreamType.RichText); 
     
         } 用来干什么
      

  2.   

    你看看这个网站,对你可能有帮助:
    http://www.richtextbox.com