亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? settingsform.cs

?? 用C#語(yǔ)言編寫
?? CS
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.IO;
using System.Xml.Serialization;
using JH.CommBase;

/// <summary>
/// Summary description for SettingsForm.
/// </summary>
public class SettingsForm : System.Windows.Forms.Form
{
	private System.Windows.Forms.MainMenu mainMenu1;
	private System.Windows.Forms.MenuItem menuItemSaveXML;
	private System.Windows.Forms.MenuItem menuItemOpenXML;
	private System.Windows.Forms.MenuItem menuItemClose;
	private System.Windows.Forms.MenuItem menuItemHSN;
	private System.Windows.Forms.MenuItem menuItemHSX;
	private System.Windows.Forms.MenuItem menuItemHSC;
	private System.Windows.Forms.MenuItem menuItemHSD;
	private System.Windows.Forms.ComboBox comboBoxPort;
	private System.Windows.Forms.ComboBox comboBoxBaud;
	private System.ComponentModel.IContainer components;
	private System.Windows.Forms.ComboBox comboBoxParity;
	private System.Windows.Forms.ComboBox comboBoxDB;
	private System.Windows.Forms.ComboBox comboBoxSB;
	private System.Windows.Forms.GroupBox groupBox1;
	private System.Windows.Forms.GroupBox groupBox2;
	private System.Windows.Forms.CheckBox checkBoxCTS;
	private System.Windows.Forms.CheckBox checkBoxDSR;
	private System.Windows.Forms.CheckBox checkBoxTxX;
	private System.Windows.Forms.CheckBox checkBoxXC;
	private System.Windows.Forms.Label label6;
	private System.Windows.Forms.Label label7;
	private System.Windows.Forms.ComboBox comboBoxRTS;
	private System.Windows.Forms.ComboBox comboBoxDTR;
	private System.Windows.Forms.CheckBox checkBoxRxX;
	private System.Windows.Forms.CheckBox checkBoxGD;
	private System.Windows.Forms.GroupBox groupBox3;
	private System.Windows.Forms.NumericUpDown numericUpDownLW;
	private System.Windows.Forms.NumericUpDown numericUpDownHW;
	private System.Windows.Forms.NumericUpDown numericUpDownRxS;
	private System.Windows.Forms.NumericUpDown numericUpDownTxS;
	private System.Windows.Forms.GroupBox groupBox4;
	private System.Windows.Forms.NumericUpDown numericUpDownTC;
	private System.Windows.Forms.NumericUpDown numericUpDownTM;
	private System.Windows.Forms.CheckBox checkBoxAR;
	private System.Windows.Forms.GroupBox groupBox5;
	private System.Windows.Forms.NumericUpDown numericUpDownBRN;
	private System.Windows.Forms.CheckBox checkBoxHX;
	private System.Windows.Forms.ComboBox comboBoxBRK;
	private System.Windows.Forms.ComboBox comboBoxXon;
	private System.Windows.Forms.ComboBox comboBoxXoff;
	private System.Windows.Forms.MenuItem menuItemFile;
	private System.Windows.Forms.MenuItem menuItemDefault;
	private System.Windows.Forms.OpenFileDialog openFileDialog;
	private System.Windows.Forms.SaveFileDialog saveFileDialog;
	private System.Windows.Forms.CheckBox checkBoxBLC;
	private System.Windows.Forms.Label label10;
	private System.Windows.Forms.Label label18;
	private System.Windows.Forms.CheckBox checkBoxCheck;
	private System.Windows.Forms.Label label19;
	private System.Windows.Forms.Label label20;
	private System.Windows.Forms.Label label21;
	private System.Windows.Forms.Label label22;
	private System.Windows.Forms.Label label23;
	private System.Windows.Forms.Label label24;
	private System.Windows.Forms.Label label8;
	private System.Windows.Forms.Label label9;
	private System.Windows.Forms.Label label4;
	private System.Windows.Forms.Label label3;
	private System.Windows.Forms.Label label5;
	private System.Windows.Forms.Label label11;
	private System.Windows.Forms.Label label2;
	private System.Windows.Forms.ToolTip toolTip;

	public SettingsForm(BaseTerm.CommBaseTermSettings settings)
	{
		//
		// Required for Windows Form Designer support
		//
		InitializeComponent();

		FillASCII(comboBoxXon);
		FillASCII(comboBoxXoff);
		FillASCII(comboBoxBRK);
	}

	/// <summary>
	/// Clean up any resources being used.
	/// </summary>
	protected override void Dispose( bool disposing )
	{
		if( disposing )
		{
			if(components != null)
			{
				components.Dispose();
			}
		}
		base.Dispose( disposing );
	}

	#region Windows Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.mainMenu1 = new System.Windows.Forms.MainMenu();
			this.menuItemFile = new System.Windows.Forms.MenuItem();
			this.menuItemSaveXML = new System.Windows.Forms.MenuItem();
			this.menuItemOpenXML = new System.Windows.Forms.MenuItem();
			this.menuItemClose = new System.Windows.Forms.MenuItem();
			this.menuItemDefault = new System.Windows.Forms.MenuItem();
			this.menuItemHSN = new System.Windows.Forms.MenuItem();
			this.menuItemHSX = new System.Windows.Forms.MenuItem();
			this.menuItemHSC = new System.Windows.Forms.MenuItem();
			this.menuItemHSD = new System.Windows.Forms.MenuItem();
			this.comboBoxPort = new System.Windows.Forms.ComboBox();
			this.comboBoxBaud = new System.Windows.Forms.ComboBox();
			this.comboBoxParity = new System.Windows.Forms.ComboBox();
			this.comboBoxDB = new System.Windows.Forms.ComboBox();
			this.comboBoxSB = new System.Windows.Forms.ComboBox();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.label21 = new System.Windows.Forms.Label();
			this.label20 = new System.Windows.Forms.Label();
			this.label19 = new System.Windows.Forms.Label();
			this.numericUpDownTC = new System.Windows.Forms.NumericUpDown();
			this.numericUpDownTM = new System.Windows.Forms.NumericUpDown();
			this.numericUpDownTxS = new System.Windows.Forms.NumericUpDown();
			this.checkBoxCheck = new System.Windows.Forms.CheckBox();
			this.checkBoxXC = new System.Windows.Forms.CheckBox();
			this.checkBoxTxX = new System.Windows.Forms.CheckBox();
			this.checkBoxDSR = new System.Windows.Forms.CheckBox();
			this.checkBoxCTS = new System.Windows.Forms.CheckBox();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.label24 = new System.Windows.Forms.Label();
			this.label23 = new System.Windows.Forms.Label();
			this.label22 = new System.Windows.Forms.Label();
			this.numericUpDownRxS = new System.Windows.Forms.NumericUpDown();
			this.numericUpDownHW = new System.Windows.Forms.NumericUpDown();
			this.numericUpDownLW = new System.Windows.Forms.NumericUpDown();
			this.checkBoxGD = new System.Windows.Forms.CheckBox();
			this.checkBoxRxX = new System.Windows.Forms.CheckBox();
			this.label7 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.comboBoxDTR = new System.Windows.Forms.ComboBox();
			this.comboBoxRTS = new System.Windows.Forms.ComboBox();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.label9 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.comboBoxXoff = new System.Windows.Forms.ComboBox();
			this.comboBoxXon = new System.Windows.Forms.ComboBox();
			this.checkBoxAR = new System.Windows.Forms.CheckBox();
			this.groupBox5 = new System.Windows.Forms.GroupBox();
			this.label18 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.checkBoxBLC = new System.Windows.Forms.CheckBox();
			this.comboBoxBRK = new System.Windows.Forms.ComboBox();
			this.checkBoxHX = new System.Windows.Forms.CheckBox();
			this.numericUpDownBRN = new System.Windows.Forms.NumericUpDown();
			this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
			this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
			this.toolTip = new System.Windows.Forms.ToolTip(this.components);
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownTC)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownTM)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownTxS)).BeginInit();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownRxS)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownHW)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownLW)).BeginInit();
			this.groupBox3.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.groupBox5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownBRN)).BeginInit();
			this.SuspendLayout();
			// 
			// mainMenu1
			// 
			this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																					  this.menuItemFile,
																					  this.menuItemDefault});
			// 
			// menuItemFile
			// 
			this.menuItemFile.Index = 0;
			this.menuItemFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																						 this.menuItemSaveXML,
																						 this.menuItemOpenXML,
																						 this.menuItemClose});
			this.menuItemFile.Text = "&File";
			// 
			// menuItemSaveXML
			// 
			this.menuItemSaveXML.Index = 0;
			this.menuItemSaveXML.Text = "&Save as XML";
			this.menuItemSaveXML.Click += new System.EventHandler(this.menuItemSaveXML_Click);
			// 
			// menuItemOpenXML
			// 
			this.menuItemOpenXML.Index = 1;
			this.menuItemOpenXML.Text = "&Load from XML";
			this.menuItemOpenXML.Click += new System.EventHandler(this.menuItemOpenXML_Click);
			// 
			// menuItemClose
			// 
			this.menuItemClose.Index = 2;
			this.menuItemClose.Text = "&Close";
			this.menuItemClose.Click += new System.EventHandler(this.menuItemClose_Click);
			// 
			// menuItemDefault
			// 
			this.menuItemDefault.Index = 1;
			this.menuItemDefault.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																							this.menuItemHSN,
																							this.menuItemHSX,
																							this.menuItemHSC,
																							this.menuItemHSD});
			this.menuItemDefault.Text = "&Defaults";
			// 
			// menuItemHSN
			// 
			this.menuItemHSN.Index = 0;
			this.menuItemHSN.Text = "&No handshaking";
			this.menuItemHSN.Click += new System.EventHandler(this.menuItemHSN_Click);
			// 
			// menuItemHSX
			// 
			this.menuItemHSX.Index = 1;
			this.menuItemHSX.Text = "&Xon / Xoff";
			this.menuItemHSX.Click += new System.EventHandler(this.menuItemHSX_Click);
			// 
			// menuItemHSC
			// 
			this.menuItemHSC.Index = 2;
			this.menuItemHSC.Text = "&CTS / RTS";
			this.menuItemHSC.Click += new System.EventHandler(this.menuItemHSC_Click);
			// 
			// menuItemHSD
			// 
			this.menuItemHSD.Index = 3;
			this.menuItemHSD.Text = "&DSR / DTR";
			this.menuItemHSD.Click += new System.EventHandler(this.menuItemHSD_Click);
			// 
			// comboBoxPort
			// 
			this.comboBoxPort.Location = new System.Drawing.Point(80, 16);
			this.comboBoxPort.Name = "comboBoxPort";
			this.comboBoxPort.Size = new System.Drawing.Size(64, 21);
			this.comboBoxPort.TabIndex = 0;
			this.toolTip.SetToolTip(this.comboBoxPort, "Communications port name (\"COM1\")");
			this.comboBoxPort.DropDown += new System.EventHandler(this.comboBoxPort_DropDown);
			// 
			// comboBoxBaud
			// 
			this.comboBoxBaud.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBoxBaud.Items.AddRange(new object[] {
															  "75",
															  "110",
															  "134",
															  "150",
															  "300",
															  "600",
															  "1200",
															  "1800",
															  "2400",
															  "4800",
															  "7200",
															  "9600",
															  "14400",
															  "19200",
															  "38400",
															  "57600",
															  "115200",
															  "128000"});
			this.comboBoxBaud.Location = new System.Drawing.Point(216, 16);
			this.comboBoxBaud.Name = "comboBoxBaud";
			this.comboBoxBaud.Size = new System.Drawing.Size(64, 21);
			this.comboBoxBaud.TabIndex = 2;
			this.toolTip.SetToolTip(this.comboBoxBaud, "Baud rate (unsupported rates will throw an exception)");
			// 
			// comboBoxParity
			// 
			this.comboBoxParity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBoxParity.Items.AddRange(new object[] {
																"none",
																"odd",
																"even",
																"mark",
																"space"});
			this.comboBoxParity.Location = new System.Drawing.Point(112, 56);
			this.comboBoxParity.Name = "comboBoxParity";
			this.comboBoxParity.Size = new System.Drawing.Size(64, 21);
			this.comboBoxParity.TabIndex = 4;
			this.toolTip.SetToolTip(this.comboBoxParity, "Parity scheme (except for [none] adds a bit to the frame)");
			// 
			// comboBoxDB
			// 
			this.comboBoxDB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBoxDB.Items.AddRange(new object[] {
															"4",
															"5",
															"6",
															"7",
															"8"});
			this.comboBoxDB.Location = new System.Drawing.Point(8, 56);
			this.comboBoxDB.Name = "comboBoxDB";
			this.comboBoxDB.Size = new System.Drawing.Size(64, 21);
			this.comboBoxDB.TabIndex = 6;
			this.toolTip.SetToolTip(this.comboBoxDB, "Number of data bits in the frame (unsupported values will throw an exception)");
			// 
			// comboBoxSB
			// 
			this.comboBoxSB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBoxSB.Items.AddRange(new object[] {
															"1",
															"1.5",
															"2"});
			this.comboBoxSB.Location = new System.Drawing.Point(216, 56);
			this.comboBoxSB.Name = "comboBoxSB";
			this.comboBoxSB.Size = new System.Drawing.Size(64, 21);
			this.comboBoxSB.TabIndex = 8;
			this.toolTip.SetToolTip(this.comboBoxSB, "Number of stop bits added to the frame");
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.label21);
			this.groupBox1.Controls.Add(this.label20);
			this.groupBox1.Controls.Add(this.label19);
			this.groupBox1.Controls.Add(this.numericUpDownTC);
			this.groupBox1.Controls.Add(this.numericUpDownTM);
			this.groupBox1.Controls.Add(this.numericUpDownTxS);
			this.groupBox1.Controls.Add(this.checkBoxCheck);
			this.groupBox1.Controls.Add(this.checkBoxXC);
			this.groupBox1.Controls.Add(this.checkBoxTxX);
			this.groupBox1.Controls.Add(this.checkBoxDSR);
			this.groupBox1.Controls.Add(this.checkBoxCTS);
			this.groupBox1.Location = new System.Drawing.Point(4, 88);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(144, 216);
			this.groupBox1.TabIndex = 10;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Tx Flow Control";
			// 
			// label21
			// 
			this.label21.Location = new System.Drawing.Point(8, 161);
			this.label21.Name = "label21";
			this.label21.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.label21.Size = new System.Drawing.Size(56, 16);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
琪琪久久久久日韩精品| 欧美色区777第一页| 激情综合色综合久久综合| 日韩中文字幕91| 夜色激情一区二区| 亚洲综合久久久| 亚洲一区二区三区四区在线观看| 亚洲色欲色欲www| 亚洲精品亚洲人成人网 | 国产视频在线观看一区二区三区| 精品奇米国产一区二区三区| 日韩欧美色综合| 久久女同性恋中文字幕| 久久色.com| 欧美高清在线视频| 亚洲乱码日产精品bd| 亚洲老司机在线| 五月天国产精品| 狠狠色丁香久久婷婷综合丁香| 紧缚奴在线一区二区三区| 丰满白嫩尤物一区二区| www.一区二区| 欧美日韩在线播放三区| 91精品国产乱| 精品国产乱子伦一区| 日本一二三四高清不卡| 亚洲免费观看视频| 午夜精品在线视频一区| 国产一区二区福利| 91丨九色丨尤物| 56国语精品自产拍在线观看| 26uuu久久综合| 亚洲私人影院在线观看| 偷拍日韩校园综合在线| 国产在线一区观看| 91福利精品视频| 欧美成人video| 国产精品国产三级国产有无不卡| 亚洲国产综合人成综合网站| 久久草av在线| 91麻豆视频网站| 精品美女在线播放| 亚洲视频在线一区观看| 美国十次综合导航| 91在线码无精品| 欧美一区二区三区精品| 国产欧美精品区一区二区三区 | 久久久久国产精品免费免费搜索| 国产日产欧产精品推荐色 | 国产美女av一区二区三区| 91麻豆福利精品推荐| 欧美成人a∨高清免费观看| 综合av第一页| 久久99精品久久久久| 91麻豆高清视频| 久久免费的精品国产v∧| 一区二区三区.www| 国产福利91精品| 欧美高清激情brazzers| 国产精品私人自拍| 麻豆视频一区二区| 色爱区综合激月婷婷| 国产无一区二区| 蜜桃精品视频在线| 欧美日韩国产大片| 亚洲美女偷拍久久| 成人综合婷婷国产精品久久| 日韩欧美亚洲国产另类 | 91老师国产黑色丝袜在线| 欧美大黄免费观看| 亚洲国产中文字幕在线视频综合 | 在线成人免费视频| 亚洲色图欧美激情| 国产不卡视频一区二区三区| 欧美一区二区三区在线视频| 亚洲精品网站在线观看| 国产aⅴ综合色| 精品三级在线看| 日本少妇一区二区| 欧美在线观看视频一区二区| 国产精品毛片久久久久久久| 久久国产精品99精品国产| 欧美精品18+| 亚洲444eee在线观看| 日本精品裸体写真集在线观看| 日本一区二区三区dvd视频在线| 加勒比av一区二区| 欧美成人艳星乳罩| 激情综合色播激情啊| 日韩一级成人av| 五月婷婷欧美视频| 欧美日韩成人综合| 亚洲成av人片一区二区梦乃| 一道本成人在线| 亚洲三级理论片| 97久久精品人人做人人爽| 国产欧美精品一区二区色综合| 精品一区二区免费看| 日韩欧美中文字幕公布| 免费成人美女在线观看| 日韩欧美在线影院| 精品无码三级在线观看视频| 精品国产乱码久久久久久牛牛 | 96av麻豆蜜桃一区二区| 国产精品丝袜久久久久久app| 国产白丝网站精品污在线入口| 久久久精品黄色| 国产精品 欧美精品| 久久久久成人黄色影片| 国产美女精品一区二区三区| 久久精品亚洲一区二区三区浴池| 国产美女久久久久| 欧美国产国产综合| 91视频.com| 亚洲无线码一区二区三区| 欧美日韩精品电影| 日本中文一区二区三区| 欧美一级在线观看| 激情综合一区二区三区| 国产网站一区二区三区| 不卡的看片网站| 一区二区三区中文字幕精品精品| 欧美丝袜自拍制服另类| 日本中文字幕一区二区有限公司| 精品99999| 99久久精品99国产精品| 夜夜嗨av一区二区三区中文字幕| 欧美日韩中文一区| 久久成人免费电影| 国产精品久久久久久妇女6080| 91久久精品国产91性色tv| 亚洲h动漫在线| 欧美精品一区二区三区蜜臀| 成人综合婷婷国产精品久久| 亚洲最大色网站| 精品欧美一区二区久久| 成人免费毛片片v| 亚洲不卡av一区二区三区| 精品日韩一区二区三区| 成人福利电影精品一区二区在线观看 | 精品国产一区二区三区久久久蜜月 | 99re视频这里只有精品| 天堂成人免费av电影一区| 26uuu欧美日本| 色综合激情五月| 日韩不卡免费视频| 中文字幕av一区二区三区高 | 欧美国产丝袜视频| 欧美在线色视频| 狠狠色丁香久久婷婷综合_中| 成人免费在线视频| 日韩欧美不卡一区| 91视频在线观看| 精久久久久久久久久久| 一区二区三区四区在线播放 | 欧美激情一区二区三区不卡| 在线视频中文字幕一区二区| 奇米在线7777在线精品 | 国产精品自拍av| 一区二区三区四区不卡在线| 欧美刺激脚交jootjob| 99精品热视频| 九九久久精品视频| 亚洲丰满少妇videoshd| 欧美国产精品一区二区三区| 91精品国产综合久久婷婷香蕉| av男人天堂一区| 精品综合久久久久久8888| 亚洲精品高清在线观看| 久久新电视剧免费观看| 欧美日韩国产bt| 色综合天天综合网天天看片| 极品少妇一区二区三区精品视频| 一级中文字幕一区二区| 国产精品国产三级国产有无不卡| 日韩精品在线一区| 欧美高清一级片在线| 91久久精品一区二区三| 不卡欧美aaaaa| 国产福利视频一区二区三区| 免费成人在线观看视频| 亚洲一区二区美女| 亚洲乱码国产乱码精品精的特点| 久久久综合网站| 日韩欧美久久一区| 91精品国产综合久久福利软件| 在线亚洲+欧美+日本专区| 91网站在线播放| 成人ar影院免费观看视频| 国产一区二区精品久久91| 久久99精品一区二区三区三区| 日韩中文字幕av电影| 午夜一区二区三区视频| 亚洲曰韩产成在线| 亚洲精品国产一区二区三区四区在线 | 一区视频在线播放| 日本一区二区免费在线| 久久久美女艺术照精彩视频福利播放 | 久久亚洲一区二区三区四区| 欧美一区二区三区影视|