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 2008 制作一个 Windows 窗体应用程序,我想知道我是否可以让用户转到另一个屏幕而不是在同一个屏幕上。我正在使用 Visual C# 进行编码。谢谢
假设您在项目中添加了另一个名为“frmRegister”的表单,您可以在按钮单击事件处理程序中使用如下代码打开它:
private void button1_Click(object sender, EventArgs e) { frmRegister register = new frmRegister(); register.Show(); }