private void botaoAdicionarCliente1_Click(object sender, EventArgs e)
 {
     CadastrarCliente cadastroCliente = new CadastrarCliente();
     cadastroCliente.Show();
 }
 private void botaoCadCliente1_Click(object sender, EventArgs e)
 {
     CadastrarCliente cadastroCliente = new CadastrarCliente(this);
     cadastroCliente.ShowDialog();
 }