Ejemplo n.º 1
0
        private void textBox6_TextChanged(object sender, EventArgs e)
        {
            AuxiliaryFunc af2 = new AuxiliaryFunc();

            if (af2.TextIsNum(textBox6.Text))
            {
                Config.MaxWavelen = Convert.ToInt32(textBox6.Text);
            }
        }
Ejemplo n.º 2
0
        private void textBox1_TextChanged_1(object sender, EventArgs e)
        {
            AuxiliaryFunc af = new AuxiliaryFunc();

            if (af.TextIsNum(textBox1.Text))
            {
                k = Convert.ToInt32(textBox1.Text);
            }
        }
        private void textBox4_TextChanged(object sender, EventArgs e)
        {
            AuxiliaryFunc af = new AuxiliaryFunc();

            if (af.TextIsNum(textBox4.Text))
            {
                Presolution.MaxThreshold = Convert.ToInt32(textBox4.Text);
            }
        }