Пример #1
0
        void textBox2_Leave(object sender, EventArgs e)
        {
            string str = this.parent + "." + label1.Text;

            if (label1.Text.Contains("Device"))
            {
                XmlReadWrite.SetValue(str, textBox2.Text + textBox1.Text + textBox.Text);
            }
        }
Пример #2
0
        void numericUpDown_ValueChanged(object sender, EventArgs e)
        {
            string str = this.parent + "." + label1.Text;

            XmlReadWrite.SetValue(str, numericUpDown.Value.ToString());
        }