private void cadastroCidadesToolStripMenuItem_Click(object sender, EventArgs e) { frmCidade frmCidade = new frmCidade(); frmCidade.MdiParent = this; frmCidade.WindowState = FormWindowState.Maximized; frmCidade.Show(); }
private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e) { Form fc = Application.OpenForms["frmCidade"]; if (fc != null) { fc.Close(); } frmCidade drmC = new frmCidade(); }