示例#1
0
        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();
        }
示例#3
0
        private void undoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var Janela = new CadastroCliente();

            Janela.MdiParent = this;
            Janela.Show();
        }
示例#4
0
            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();
        }