在我的项目中,我有一个MDI父表单,从那个表单我跳进我的主程序但是当我进入我的主程序时我想关闭,隐藏或最小化MDI,所以它不可见用户。我自己尝试过,但它没有用。我想知道它是否可能以及它是如何可能的。
private void bot45_Click(object sender, EventArgs e)
{
Form2 fors = new Form2(); //main program
fors.Show();
//bot 45 is the button to enter the main form
// enter main program--->> code to hide close or minimize the MDI form
}