public MenuPrincipal(int codigochamado) { InitializeComponent(); frmChamado form = new frmChamado(codigochamado, this); this.LayoutMdi(MdiLayout.Cascade); form.WindowState = System.Windows.Forms.FormWindowState.Normal; form.MdiParent = this; form.Location = new Point(370, 180); form.Show(); }
private void MostrarChamado(EnumChamado enChamado, int idEncerramento, bool quadro, int idClienteAgendamento, int idAgendamento) { try { if (!FormularioExiste("frmChamado")) { var formulario = new frmChamado(enChamado, idEncerramento, quadro, false, idClienteAgendamento, idAgendamento); formulario.MdiParent = this; Tela.AbrirFormulario(formulario); } } catch (Exception ex) { MessageBox.Show(ex.Message); } }