Example #1
0
        // SoundPlayer simpleSound;
        // WMPLib.WindowsMediaPlayer wplayer = new WMPLib.WindowsMediaPlayer();
        public frmAudio(elementoEntorno parametros, String ruta, Boolean boolReproducir)
        {
            this.ruta           = ruta;
            this.boolReproducir = boolReproducir;


            InitializeComponent();


            elementoEntorno carg = parametros.getGlobal();

            if (carg != null)
            {
                SetValores(carg.getEtiqueta(), carg.getSugerir(), carg.getRequerido());
            }
            else
            {
                println("no se encontro el global");
                SetValores("", "", "");
            }



            lblRuta.Text = ruta;

            crearAudio();
            stop();

            if (boolReproducir)
            {
                play();
            }
        }
Example #2
0
        public frmDecimal(itemValorPregunta valor, elementoEntorno parametros, int limiteInferior, int limiteSuperior)
        {
            InitializeComponent();



            this.limiteInferior = limiteInferior;
            this.limiteSuperior = limiteSuperior;

            this.valor = valor;
            elementoEntorno carg = parametros.getGlobal();

            if (carg != null)
            {
                SetValores(carg.getEtiqueta(), carg.getSugerir(), carg.getRequerido());
            }
            else
            {
                SetValores("", "", "");
            }


            numericUpDown1.Maximum = decimal.MaxValue;
            numericUpDown1.Minimum = decimal.MinValue;
        }
Example #3
0
        public frmNota(itemValorPregunta valor, elementoEntorno parametros)
        {
            InitializeComponent();



            this.valor = valor;
            elementoEntorno carg = parametros.getGlobal();

            if (carg != null)
            {
                SetValores(carg.getEtiqueta(), carg.getSugerir(), carg.getRequerido());
            }
            else
            {
                SetValores("", "", "");
            }
        }
Example #4
0
        public frmBooleano(itemValorPregunta valor, elementoEntorno parametros, String valVerdadero, String valFalso)
        {
            InitializeComponent();

            rbVerdadero.Text = valVerdadero;
            rbFalso.Text     = valFalso;

            this.valor = valor;
            elementoEntorno carg = parametros.getGlobal();

            if (carg != null)
            {
                SetValores(carg.getEtiqueta(), carg.getSugerir(), carg.getRequerido());
            }
            else
            {
                SetValores("", "", "");
            }
        }
Example #5
0
        public frmCadena(itemValorPregunta valor, elementoEntorno parametros)
        {
            InitializeComponent();


            this.valor = valor;
            elementoEntorno carg = parametros.getGlobal();

            if (carg != null)
            {
                SetValores(carg.getEtiqueta(), carg.getSugerir(), carg.getRequerido());
            }
            else
            {
                println("no se encontro el global");
                SetValores("", "", "");
            }

            //solo tengo que traer los que estan globales, jejejejejejeje
        }
        public frmSeleccionarUno(itemValorPregunta valor, elementoEntorno parametros, List <String> lstString)
        {
            InitializeComponent();


            this.valor = valor;
            elementoEntorno carg = parametros.getGlobal();

            if (carg != null)
            {
                SetValores(carg.getEtiqueta(), carg.getSugerir(), carg.getRequerido());
            }
            else
            {
                println("no se encontro el global");
                SetValores("", "", "");
            }



            int i = 0;

            foreach (String strTemp in lstString)
            {
                println(strTemp);

                RadioButton rad = new RadioButton();
                rad.Text     = strTemp;
                rad.Location = new Point(10, i * 20);
                lstButons.Add(rad);
                i++;
                grupoBox.Controls.Add(rad);
            }


            //cargando los elementos al panel



            //solo tengo que traer los que estan globales, jejejejejejeje
        }