调整选中文字的颜色和字体:richTextBox1.SelectionColor = Color.Blue;richTextBox1.SelectionFont = new Font("微软雅黑", 10);可以用过SelectionStart和SelectionLength选中内容。richTextBox1.SelectionStart = 1;richTextBox1.SelectionLength = 100;