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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? settingsform.cs

?? 用C#語言編寫
?? CS
?? 第 1 頁 / 共 3 頁
字號:
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);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美日本一区二区三区| 欧美一区二区三区四区高清| 成人av网站免费| 极品少妇一区二区三区精品视频| 亚洲bt欧美bt精品| 日韩国产一区二| 狠狠色丁香婷综合久久| 国产精品一级在线| 欧美在线免费观看亚洲| 在线电影国产精品| 欧美变态tickling挠脚心| 久久久久九九视频| 亚洲女性喷水在线观看一区| 天堂精品中文字幕在线| 婷婷夜色潮精品综合在线| 国产精品主播直播| 在线视频亚洲一区| 国产色产综合产在线视频| 日韩一区中文字幕| 国产在线精品一区二区夜色| 色偷偷88欧美精品久久久| 精品久久久网站| 一区二区久久久| 成人一级片在线观看| 欧美精品乱人伦久久久久久| 中文字幕在线观看不卡视频| 亚洲成人手机在线| 日本久久一区二区| 国产精品国产三级国产三级人妇 | 欧美精品v日韩精品v韩国精品v| 26uuu国产在线精品一区二区| 亚洲女同一区二区| eeuss影院一区二区三区| 精品久久久久久久人人人人传媒| 亚洲一区二区欧美激情| youjizz久久| 国产欧美一区二区精品久导航 | 欧日韩精品视频| 亚洲视频1区2区| 99久久精品免费| 国产精品天干天干在观线| 国产真实乱子伦精品视频| 日韩精品一区二区三区蜜臀| 九色综合狠狠综合久久| 2021中文字幕一区亚洲| 精品一区二区三区在线观看| 久久久综合视频| 成人国产电影网| 亚洲电影一级片| 91精品国产品国语在线不卡| 久久99国产精品久久99 | 性欧美大战久久久久久久久| 欧美性色综合网| 青青草国产精品97视觉盛宴| 日韩美女视频一区二区在线观看| 久久国产综合精品| 国产精品国模大尺度视频| 欧美午夜寂寞影院| 久久精品国产77777蜜臀| 中文字幕av不卡| 51午夜精品国产| 成人精品视频一区| 亚洲不卡av一区二区三区| 久久综合色之久久综合| 99国产精品久久久久久久久久久 | www.在线欧美| 日本午夜精品一区二区三区电影 | 国产精品一品视频| 亚洲美女淫视频| 国产亚洲欧洲一区高清在线观看| 欧美性受极品xxxx喷水| 福利一区福利二区| 亚洲成人免费在线观看| 一色桃子久久精品亚洲| 日韩一级大片在线| 欧美丝袜丝交足nylons| 本田岬高潮一区二区三区| 人人超碰91尤物精品国产| 亚洲国产裸拍裸体视频在线观看乱了| 精品成人在线观看| 精品国产一区久久| 欧美成人性战久久| 日韩亚洲欧美成人一区| 欧美丰满少妇xxxxx高潮对白| 色哟哟亚洲精品| 91国偷自产一区二区三区观看| 成人av网站在线观看免费| 成人午夜激情影院| 91在线免费播放| 日韩欧美在线不卡| 欧美一区二区网站| 久久亚区不卡日本| 国产欧美一区二区精品婷婷| 中文字幕一区二区三区乱码在线| 久久精品视频在线看| 国产精品美女一区二区在线观看| 亚洲欧美电影一区二区| 亚洲国产综合91精品麻豆| 男男成人高潮片免费网站| 麻豆一区二区三| 9i在线看片成人免费| 欧美三级视频在线| 精品奇米国产一区二区三区| 国产精品热久久久久夜色精品三区 | 伊人开心综合网| 欧美一区二区观看视频| 欧美少妇bbb| 欧美性感一类影片在线播放| 日韩激情视频网站| 欧美高清视频不卡网| 日韩精品一区二区三区四区视频| 国产夜色精品一区二区av| 亚洲黄色免费网站| 久久激情五月婷婷| 91亚洲精品乱码久久久久久蜜桃| 欧美剧在线免费观看网站 | 一区二区三区小说| 免费在线看成人av| 天堂一区二区在线| 蓝色福利精品导航| 欧美网站大全在线观看| 欧美国产欧美亚州国产日韩mv天天看完整 | 欧美日韩一级视频| 亚洲乱码精品一二三四区日韩在线 | 国产成人自拍网| 欧美精品一区二区三区很污很色的| 亚洲欧洲性图库| 成人午夜av电影| 国产婷婷精品av在线| 国产一区二区三区av电影| 欧美一区二区三区在线看| 亚洲电影在线播放| 欧美日韩精品一区二区三区蜜桃| 亚洲日本va在线观看| 在线一区二区观看| 亚洲1区2区3区4区| 欧美一级欧美三级在线观看| 日本色综合中文字幕| 日韩一区二区三区精品视频| 日韩av中文字幕一区二区三区| 欧美日韩国产片| 麻豆一区二区在线| 中文字幕一区二区三区四区| 色婷婷综合久久久久中文一区二区| 亚洲一区二区三区影院| 337p亚洲精品色噜噜噜| 国产一区二区三区| 一区二区三区国产精品| 日韩免费高清视频| 91一区二区在线| 日本欧美韩国一区三区| 欧美激情一区二区三区不卡 | 一区二区三区中文字幕| 日韩欧美国产综合| 91久久国产综合久久| 精久久久久久久久久久| 亚洲一级二级三级在线免费观看| 日韩一区二区电影| 在线观看网站黄不卡| 国产一二三精品| 免费成人美女在线观看.| 亚洲乱码日产精品bd| 久久久久久久综合狠狠综合| 欧美性生交片4| 色狠狠色噜噜噜综合网| 成人性生交大片免费看中文| 精品影院一区二区久久久| 亚洲成av人在线观看| 亚洲高清免费观看高清完整版在线观看 | 日韩欧美色综合| 337p亚洲精品色噜噜狠狠| a4yy欧美一区二区三区| 国产乱人伦精品一区二区在线观看 | 国产精品一线二线三线精华| 免费在线看一区| 狠狠久久亚洲欧美| 国模一区二区三区白浆| 久久精品久久久精品美女| 琪琪久久久久日韩精品| 极品少妇xxxx精品少妇| 黄页网站大全一区二区| 成人综合在线观看| 成人短视频下载| 欧美日韩亚州综合| 欧美一级高清大全免费观看| 欧美变态tickling挠脚心| 国产午夜亚洲精品不卡| 国产精品国产三级国产有无不卡| 自拍偷拍亚洲欧美日韩| 婷婷开心久久网| 国产精品一卡二卡在线观看| 成人一级黄色片| 91麻豆精品国产自产在线观看一区| 欧美一区二区三区日韩视频| 中文字幕第一区综合| 亚洲午夜精品网| 不卡影院免费观看| 欧美女孩性生活视频| 中文字幕的久久| 另类综合日韩欧美亚洲|