public void Cerrar_Vista_Previa() { if (this.VistaPrevia != null) { VistaPrevia.Stop(); } }
public void Vsita_Previa_ASC(Control c) { try { if (VistaPrevia != null) { VistaPrevia.Stop(); } switch (this.Configuracion.Estimulo_ASC) { case 0: this.VistaPrevia = new Vista_Previa_AS(this.Configuracion.Color_Fondo_ASC, this.Configuracion.Imagenes_ASC_IMG, c); break; default: //case 1: this.VistaPrevia = new Vista_Previa_AS(this.Configuracion.Color_Fondo_ASC, this.Configuracion.Imagenes_ASC_FIG, c); break; } VistaPrevia.Start(); } catch (Exception) { throw new Exception(Resources.MSG_PreviewNotLoaded); } }
public void Vsita_Previa_PVA(Control c, Color[] colores, ImageSet listaIMG) { try { if (VistaPrevia != null) { VistaPrevia.Stop(); } this.VistaPrevia = new Vista_Previa_PVA(c, colores, listaIMG); VistaPrevia.Start(); } catch (Exception) { throw new Exception(Resources.MSG_PreviewNotLoaded); } }
public void Vsita_Previa_AP(Control c) { try { if (VistaPrevia != null) { VistaPrevia.Stop(); } this.VistaPrevia = new Vista_Previa_AP(c); VistaPrevia.Start(); } catch (Exception) { throw new Exception(Resources.MSG_PreviewNotLoaded); } }
public void Vsita_Previa_ASS_Letras_Colores(Control c) { try { if (VistaPrevia != null) { VistaPrevia.Stop(); } this.VistaPrevia = new Vista_Previa_AS_Letras_Colores(this.Configuracion.Letras_CASS_L[this.Configuracion.Letra_Diana_CASS_L].ToString(), this.Configuracion.Color_LetraDiana_CASS_L, c); VistaPrevia.Start(); } catch (Exception) { throw new Exception(Resources.MSG_PreviewNotLoaded); } }
public void Vsita_Previa_ET(Control c, int intervaloSalida, int anchoEstimulo, int altoEstimulo, int zonaOpaca, int areaCorrecta, Color estimulo, Color colorZonaOpaca) { try { if (VistaPrevia != null) { VistaPrevia.Stop(); } this.VistaPrevia = new Vista_Previa_ET(c, intervaloSalida, anchoEstimulo, altoEstimulo, zonaOpaca, areaCorrecta, estimulo, colorZonaOpaca); VistaPrevia.Start(); } catch (Exception) { throw new Exception(Resources.MSG_PreviewNotLoaded); } }