private void novoClienteBtn_Click_1(object sender, EventArgs e) { if (cadastroDeCliente == null) { cadastroDeCliente = new CadastroDeCliente(); cadastroDeCliente.Disposed += new EventHandler(cadastroDeCliente_Disposed_1); cadastroDeCliente.Show(); } }
void cadastroDeCliente_Disposed_1(object sender, EventArgs e) { cadastroDeCliente = null; }
private void button1_Click(object sender, EventArgs e) { CadastroDeCliente cadastroDeCliente = new CadastroDeCliente(); cadastroDeCliente.Show(); }