private void button1_Click(object sender, EventArgs e)
 {
     foreach (Automovel item in listaAuto)
     {
         item._Modelo =  txtModelo.Text ;
         item._Nome = txtNome.Text;
         item._Cor = txtCor.Text;
         item._Tipo = cbTipoVeiculo.SelectedItem.ToString();
         item._Placa = txtPlaca.Text;
     }
     CadastrarCliente c = new CadastrarCliente();
     c._ListaAuto = listaAuto;
     c.Show();
     this.Close();
 }
 private void btnCadastrarCliente_Click(object sender, EventArgs e)
 {
     CadastrarCliente cliente = new CadastrarCliente();
     cliente.Show();
 }