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.
我正在制作一个程序,它在 Windows 窗体中有两个复选框。第一个 CheckBox 用于清除文件,另一个用于打印文件。但最终选择,方法的开始是一个按钮。我想做一个类似 if 语句的东西,比如“如果单击 checkbox1,做这个和这个”。但它应该由 Button 触发。
您可以在按钮的事件中执行此操作:
if (checkbox1.Checked) { //Do something }
在 Visual Studio 中,在可视化设计器中编辑表单时,如果双击该按钮,您将被带到代码文件。它会为您生成一个方法,称为(name of your button)_Click (object sender, EventArgs e). 它还将自动绑定到按钮单击。把你的代码放在那里。
(name of your button)_Click (object sender, EventArgs e)