Windows.Forms.RichTextBox Loses table background colours
问题 When loading a rtf file into a Windows Forms RichTextBox it loses the background colour of table cells. If we use a WPF RichTextBox and load the same file everything is formatted as it should. Am I missing something when I load the file into the Windows Forms RichTextBox? Windows Forms RichTextBox code snippet : private void button1_Click(object sender, EventArgs e) { OpenFileDialog fDialog = new System.Windows.Forms.OpenFileDialog(); fDialog.Filter = "Rich Text Files (*.rtf)|*.rtf"; fDialog