private void BuscarCliente() { Objeto.Cliente cliente = new Objeto.Cliente(); cliente.Codigo = cmbCliente.Codigo; cliente.Nome = cmbCliente.Nome; WCliente wCliente = new WCliente(cliente); wCliente.Owner = this; wCliente.ShowDialog(); if (wCliente.Cliente != null) { cmbCliente.Id = wCliente.Cliente.Id; cmbCliente.Codigo = wCliente.Cliente.Codigo; cmbCliente.Nome = wCliente.Cliente.Nome; cmbResponsavel.cmbComboBox.Focus(); } else { if (_orcamento != null && _orcamento.Cliente == null) cmbCliente.Limpar(); } }
private void Cliente_Click(object sender, RoutedEventArgs e) { try { WCliente wCliente = new WCliente(); wCliente.Owner = this; wCliente.ShowDialog(); } catch (Exception ex) { MessageBox.Show(ex.ToString(), Comum.Util.UsuarioLogado.Empresa.Nome, MessageBoxButton.OK, MessageBoxImage.Error); } finally { this.Cursor = Cursors.Arrow; } }