//Botao placa private void Button1_Click(object sender, EventArgs e) { TelaCarros tela = new TelaCarros(); tela.ShowDialog(); CarroRepository repositoryCarro = new CarroRepository(); carro = repositoryCarro.ObterPelaPlaca(tela.Placa); maskedTextBox1.Text = carro.Placa; }
private void CarrosToolStripMenuItem_Click(object sender, EventArgs e) { TelaCarros tela = new TelaCarros(); tela.ShowDialog(); }