private void CargaInformacion(int pAsamblea) { try { DataClasses1DataContext dc = new DataClasses1DataContext(); List<SIGEEA_spObtenerListadoAsistenciaResult> lista = dc.SIGEEA_spObtenerListadoAsistencia(pAsamblea).ToList(); bool color = true; foreach (SIGEEA_spObtenerListadoAsistenciaResult a in lista) { uc_AsociadoAsamblea asociado = new uc_AsociadoAsamblea(a.PK_Id_AsiAsamblea, a.Nombre, a.Estado_AsiAsamblea, a.Cedula); asociado.Color(color); stpContenedor.Children.Add(asociado); color = !color; } } catch (Exception ex) { MessageBox.Show("Error al cargar", "SIGEEA", MessageBoxButton.OK, MessageBoxImage.Error); } }
private static void NombreAsociadoAsambleaAct(DependencyObject d, DependencyPropertyChangedEventArgs e) { uc_AsociadoAsamblea nAsociado = (uc_AsociadoAsamblea)d; nAsociado.AsociadoAsambleaNombre = e.NewValue as string; }
private static void IdAsociadoAsambleaAct(DependencyObject d, DependencyPropertyChangedEventArgs e) { uc_AsociadoAsamblea nAsociado = (uc_AsociadoAsamblea)d; nAsociado.AsociadoAsambleaId = Convert.ToInt32(e.NewValue); }