RTxtContent_DragDrop方法应该这样写:
private void RTxtContent_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
{
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
this.RTxtContent.LoadFile(files[0],RichTextBoxStreamType.RichText);
}