private void btnSalvar_Click(object sender, EventArgs e)
 {
     CadastrarVeiculo pes = new CadastrarVeiculo();
     pes.Show();
     this.Close();
 }
 private void btnVeiculo_Click(object sender, EventArgs e)
 {
     CadastrarVeiculo cadVeic = new CadastrarVeiculo();
     cadVeic.Show();
 }