如何让textBox可以显示文本,但禁止它获得焦点?同题。[解决办法]//如果不想让它变灰,还有变态的一招 -_-!!! private void textBox1_Enter(object sender, EventArgs e) { textBox1.Enabled = false; textBox1.Enabled = true; }