1、设置颜色
private void button4_Click(object sender, EventArgs e)
{
this.colorDialog1.ShowDialog();
this.textBox1.ForeColor = this.colorDialog1.Color;
}
2024-04-11 21:28:25
1、设置颜色
private void button4_Click(object sender, EventArgs e)
{
this.colorDialog1.ShowDialog();
this.textBox1.ForeColor = this.colorDialog1.Color;
}