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.
在我的应用程序中,我需要打开另一个表格。从现在开始,我使用
Form2 childform = new Form2(); childform.ShowDialog();
但是当我使用此代码显示第二个表单时,我无法单击第一个表单。我需要做什么才能打开两个表单并允许它们同时使用(单击它们,写入包含的文本框等)?
简单地说,你应该试试childform.Show()。
childform.Show()