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

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

?? 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| 3d动漫精品啪啪1区2区免费| 亚洲欧洲成人自拍| 国产91丝袜在线播放0| 日韩精品专区在线影院重磅| 亚洲午夜久久久久| 日本道色综合久久| 中文字幕永久在线不卡| 国产福利91精品| 日韩美女一区二区三区四区| 亚洲一二三级电影| 欧美在线观看你懂的| 亚洲老妇xxxxxx| 色综合久久九月婷婷色综合| 国产欧美一区二区精品忘忧草 | 91精品国产黑色紧身裤美女| 亚洲精品五月天| 97国产一区二区| 国产精品久久久久精k8| 成人精品一区二区三区四区| 国产欧美日韩在线看| 国产一区二区精品久久91| 日韩精品资源二区在线| 老色鬼精品视频在线观看播放| 欧美人体做爰大胆视频| 三级久久三级久久| 91精品国产色综合久久不卡电影 | 欧美日韩精品一区二区在线播放| 亚洲欧美色图小说| 在线视频综合导航| 午夜欧美电影在线观看| 在线91免费看| 久久99精品网久久| 久久亚洲一区二区三区明星换脸| 国产在线不卡一区| 中文字幕乱码一区二区免费| 不卡影院免费观看| 亚洲午夜电影在线观看| 7777精品伊人久久久大香线蕉 | 在线不卡中文字幕播放| 丝袜美腿高跟呻吟高潮一区| 51精品秘密在线观看| 久久国产乱子精品免费女| 国产欧美日韩在线看| 日本乱人伦一区| 午夜精品影院在线观看| 26uuu国产日韩综合| 成人app软件下载大全免费| 一区二区三区不卡视频在线观看| 欧美色成人综合| 精品一区二区在线视频| 国产亚洲成aⅴ人片在线观看| 99久久伊人精品| 日韩成人一级片| 久久久777精品电影网影网 | 欧美日韩成人综合天天影院| 免费观看日韩电影| 国产精品久久久久四虎| 欧美日韩日本视频| 粉嫩一区二区三区在线看| 一级做a爱片久久| 亚洲精品一区二区在线观看| www.日韩精品| 秋霞影院一区二区| 国产精品久久久久婷婷二区次 | 99精品视频一区二区| 五月天婷婷综合| 中文字幕免费观看一区| 91麻豆精品91久久久久久清纯| 国产不卡在线视频| 日韩av一二三| 亚洲精品视频免费观看| 久久久五月婷婷| 欧美剧情片在线观看| 岛国精品一区二区| 久久草av在线| 亚洲影视资源网| 国产精品萝li| 精品粉嫩超白一线天av| 欧美精品亚洲二区| 91久久国产综合久久| 国产高清一区日本| 精品一区二区三区的国产在线播放| 最新国产の精品合集bt伙计| 久久亚洲综合av| 日韩一区二区免费在线观看| 色播五月激情综合网| 成人av午夜影院| 成人午夜激情影院| 国产精品99久久久久久宅男| 美女视频免费一区| 手机精品视频在线观看| 一区二区成人在线| 亚洲欧美偷拍另类a∨色屁股| 国产清纯在线一区二区www| 日韩欧美高清dvd碟片| 欧美一区二区在线不卡| 欧美美女直播网站| 欧美在线播放高清精品| 色综合色狠狠天天综合色| 北条麻妃一区二区三区| 国产成人综合亚洲网站| 国产精选一区二区三区| 九一九一国产精品| 久久99国产精品久久| 国内外精品视频| 国产一区二区在线视频| 国产一区视频在线看| 免费欧美在线视频| 韩国成人精品a∨在线观看| 激情成人综合网| 国产成人午夜精品影院观看视频| 91美女在线看| 欧美天堂亚洲电影院在线播放| 色网站国产精品| 欧美亚洲综合色| 欧美福利电影网| 欧美精品一区二| 国产欧美一区二区三区在线老狼| 国产欧美日韩精品a在线观看| 国产三级一区二区| 亚洲婷婷综合久久一本伊一区| 自拍偷自拍亚洲精品播放| 亚洲精品日韩专区silk| 午夜精品免费在线观看| 蜜桃av一区二区| 国产成人高清视频| 91在线视频免费91| 欧美日韩国产综合草草| 日韩一区二区在线观看视频播放| 精品国产一区二区三区久久久蜜月 | 国产精品资源在线看| 高清beeg欧美| 欧美色涩在线第一页| 日韩精品一区二区三区视频在线观看| 欧美mv和日韩mv的网站| 国产精品网曝门| 午夜精品在线视频一区| 国产精品综合网| 91成人国产精品| 日韩欧美一级精品久久| 自拍偷拍国产亚洲| 美女免费视频一区| 色婷婷综合久久久久中文一区二区| 欧美色涩在线第一页| 久久久久久免费毛片精品| 亚洲一区二区综合| 国产91富婆露脸刺激对白| 欧美亚洲禁片免费| 久久久久久久电影| 午夜影院久久久| 成人午夜视频免费看| 制服丝袜亚洲色图| 国产精品久久久久久久久久久免费看 | 精品国精品国产尤物美女| 亚洲欧美一区二区三区久本道91 | 国产不卡在线播放| 91麻豆精品国产自产在线| 日韩毛片一二三区| 国产伦精品一区二区三区视频青涩 | 国产精品一区久久久久| 91高清在线观看| 久久久亚洲午夜电影| 天天影视网天天综合色在线播放| 顶级嫩模精品视频在线看| 欧美精品xxxxbbbb| 亚洲男同性恋视频| 成人av片在线观看| 久久嫩草精品久久久久| 男人的天堂久久精品| 国产亚洲自拍一区| 日韩一区精品视频| 欧美丝袜丝交足nylons| 中文字幕高清一区| 精品一区二区精品| 欧美一级二级在线观看| 午夜欧美在线一二页| 欧美综合在线视频| 亚洲欧洲精品天堂一级| 粉嫩aⅴ一区二区三区四区五区| 日韩欧美久久一区| 日本va欧美va欧美va精品| 欧美日韩五月天| 婷婷中文字幕综合| 欧美日本国产视频| 亚洲大片在线观看| 欧美另类变人与禽xxxxx| 爽爽淫人综合网网站| 在线不卡中文字幕播放| 日韩avvvv在线播放|