private void btnCadastrarClientes_Click(object sender, EventArgs e) { CadastroCliente Cadastro = new CadastroCliente(); Cadastro.Show(); this.Visible = false; }
private void pictureBox3_Click(object sender, EventArgs e) { CadastroCliente t = new CadastroCliente(); t.Show(); this.Hide(); }
private void undoToolStripMenuItem_Click(object sender, EventArgs e) { var Janela = new CadastroCliente(); Janela.MdiParent = this; Janela.Show(); }
private void btn_CadastroClienteClick(object sender, EventArgs e) { CadastroCliente cadastrarClienteClick = new CadastroCliente(this); cadastrarClienteClick.Show(); }
private void CadastroClientesToolStripMenuItem_Click(object sender, EventArgs e) { CadastroCliente cadastroCliente = new CadastroCliente(); cadastroCliente.Show(); }