//若是想打開一個 Form2 的窗體類,只須要: Form2 form = new Form2(); //有沒有參數得看你 Form2 的構造函數怎麼寫的了 form.Show(); //或者簡化成: new Form2().Show();