private void button2_Click(object sender, EventArgs e) { int temp; if (comboBox1.Text.IndexOf("COM") < 0) { MessageBox.Show("无效端口"); } if (int.TryParse(comboBox2.Text, out temp) == false) { MessageBox.Show("无效数据"); } if (int.TryParse(comboBox3.Text, out temp) == false) { MessageBox.Show("无效数据"); } Ini.Write("COM_Name", comboBox1.Text); Ini.Write("COM_BaudRate", comboBox2.Text); Ini.Write("Device_Addr", comboBox3.Text); this.Close(); }