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();
しかし、このコードを使用して 2 番目のフォームを表示すると、最初のフォームをクリックできません。2 つのフォームを開いて、両方を操作できるようにするには、どうすればよいですか (それらをクリックする、含まれている TextBoxes に書き込むなど)。
単純に、試してみるべきchildform.Show()です。
childform.Show()