public entregaPapeletasEfectivo(ScrollViewer scroll, String usuario) { InitializeComponent(); this.scrollContenedor = scroll; this.usuario = usuario; efe = new BDEfe(); dataEfe = efe.GetAll(); dataGridEfectivo.ItemsSource = dataEfe.DefaultView; BDCom com = new BDCom(); cmbCom.ItemsSource = com.GetAll().DefaultView; cmbCom.SelectedValuePath = "id_comisaria"; cmbCom.DisplayMemberPath = "nombre_comisaria"; dpFechaEnvio.SelectedDate = DateTime.Today; }
private void txtCodCIP_TextChanged(object sender, TextChangedEventArgs e) { if (Validacion.IsValidCIP(txtCodCIP.Text) || (txtCodCIP.Text) == "") { lblErrCIP.Content = "El Codigo CIP no es Valido"; } else { lblErrCIP.Content = ""; BDEfe efe = new BDEfe(); String str = efe.GetNom(txtCodCIP.Text); if (str != "") { lblnombreEfectivo.Content = str; } else { lblnombreEfectivo.Content = "NO EXISTE"; } } }