C# Winform 更改选中文字的颜色代码如下:
private void Form1_Load(object sender, EventArgs e)
{
this.comboBox1.Items.Add("蓝色");
this.comboBox1.Items.Add("红色");
this.comboBox1.Items.Add("黄色");
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (comboBox1.Text == "蓝色")
{
this.label1.BackColor = Color.Blue;
}
if (comboBox1.Text == "红色")
{
this.label1.BackColor = Color.Red;
}
if (comboBox1.Text == "黄色")
{
this.label1.BackColor = Color.Yellow;
}
}
选中您修要的“textbox”,然后点击“右键”选择“属性”,在“属性”中找到“ForeColor”然后选择自己喜欢的颜色就好啦 !
用richtextbox吧,然后就有selectedtext和selection***等等以这些开头的属性,这个就是用来获取你选择的文字的信息,然后还有很多的操作,如颜色,字体的都是可以的
在“属性”中找到“ForeColor” 设置颜色
private void textBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
colorDialog1.ShowDialog();
this.textBox1.ForeColor = colorDialog1.Color;
}