public wnwCompletaEntrega(int pkFactura)
        {
            InitializeComponent();
            DataClasses1DataContext dc = new DataClasses1DataContext();
            SIGEEA_spObtenerAsociadoFacturaResult informacion = dc.SIGEEA_spObtenerAsociadoFactura(pkFactura).First();
            lblAsociado.Content += " " + informacion.NombreAsociado;
            lblCedula.Content += " " + informacion.CedParticular_Persona;
            lblCodigo.Content += " " + informacion.Codigo_Asociado;
            lblFactura.Content += " " + pkFactura;
            lblFecEntrega.Content += " " + informacion.Fecha;

            PK_Factura = pkFactura;
            List<SIGEEA_spObtenerInformacionEntregaResult> listaDetalles = dc.SIGEEA_spObtenerInformacionEntrega(pkFactura).ToList();
            PK_UMedida = dc.SIGEEA_spObtenerUnidadMedidaPorTipo(listaDetalles.First().FK_Id_TipProducto).First().PK_Id_UniMedida;
            bool color = true;

            foreach (SIGEEA_spObtenerInformacionEntregaResult e in listaDetalles)
            {
                uc_ItemEntrega item = new uc_ItemEntrega(e.Informacion, e.PK_Id_DetFacAsociado, e.FK_Id_TipProducto);
                item.Color(color);
                color = !color;
                stpContenedor.Children.Add(item);
            }
        }