コード例 #1
0
ファイル: XmlLeaf_UC.cs プロジェクト: Gopi07nath/Git-Dummy
        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
ファイル: XmlLeaf_UC.cs プロジェクト: Gopi07nath/Git-Dummy
        void numericUpDown_ValueChanged(object sender, EventArgs e)
        {
            string str = this.parent + "." + label1.Text;

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