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.
试图让 C# 显示已经创建的第二种形式。如果我像这样创建一个新的,它将显示它:
Form bottomForm = new Form(); bottomForm.Show();
但是,我预先创建的表单不会提供 .Show() 的选项(该表单是通过“项目 - > 添加 Windows 表单”创建的)
任何帮助都会很棒。
尝试这个:
创建 Form2 的实例并调用 ShowDialog() 方法来显示它。使用ShowDialog()代替show()
ShowDialog()
show()
Form2 form2= new Form2(); form2.ShowDialog();