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.
変数に名前が指定されているフォームを含むパネルをロードするにはどうすればよいですか?
例えば:
Private Void LoadNewForm(string FormName) { pnlForm.Controls.Add((Form)Formname); //or Form f = new (FormName) pnlForm.Controls.Add(f); }