Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个文本框以具有红色背景和白色字体,以及一些警报文本。当我处于 Visual Studio 2010 的设计模式时,它看起来不错。
但是,当我运行该应用程序时,文本变为灰色。我不知道为什么会这样。为什么字体颜色应该更改为我没有告诉它做的事情?这是一个错误吗?
private void button2_Click(object sender, EventArgs e) { textBox1.Text = "kashif"; textBox1.BackColor = Color.Red; textBox1.ForeColor = Color.White; textBox1.Enabled = false; }
文本框被禁用。启用它会让你得到不想要的颜色。如果您希望某人不要在其中写一些东西并看到白色,则将其设为只读
textBox1.ReadOnly = true;