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.
你们对做一个检测复选框以查看它是否会显示文本框的winform有任何想法吗?例如,如果选中复选框,则会有一个文本框。如果未选中该复选框,则文本框将消失。
在您的复选框选中的事件处理程序...
textBox1.Visible = checkBox1.Checked;
..如果你想反过来,你可以这样做:
textBox1.Visible = !checkBox1.Checked;
注意感叹号,意思是“不是”。