リッチテキストボックスにおける選択文字列の背景色を変更するサンプルプログラムです。太字部分が選択文字列の背景色を変更するコードです。 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace RichText { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender EventArgs e) { //選択文字列の文字色を白に変更する。 richTextBox1.SelectionColor = Color.White; //選択文字列の背景色を赤に変更する。 richTextBox1.SelectionBackColor = Color.Red; } } } リッチテキストボックスに関するページ http://www.kisoplus.com/sample/rich.html |