private void button2_Click(object sender, EventArgs e) { Cliente c = new Cliente(); c.Nome = txtNome.Text; c.Rua = txtEndereco.Text; c.Telefone = txtBuscTel.Text; c.Bairro = txtBairro.Text; c.Numero = Convert.ToInt32(txtNumero.Text); c.Cidade = txtCidade.Text; c.Uf = cbbUF.Text; TelaPedido telPed = new TelaPedido(); telPed.Cliente(c); telPed.ShowDialog(); }
private void btnPedido_Click(object sender, RoutedEventArgs e) { TelaPedido pedido = new TelaPedido(); pedido.ShowDialog(); }