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

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

?? mainform.designer.cs

?? gsmmodem通訊/手機(jī)編程 通訊/手機(jī)編程
?? CS
字號(hào):
namespace TestGsmModem
{
	partial class MainForm
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (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.gbConnectionDetails = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this.lblPort = new System.Windows.Forms.Label();
			this.txtPort = new System.Windows.Forms.TextBox();
			this.lblBaudRate = new System.Windows.Forms.Label();
			this.lblDataBits = new System.Windows.Forms.Label();
			this.txtBuadRate = new System.Windows.Forms.TextBox();
			this.txtDataBits = new System.Windows.Forms.TextBox();
			this.lblFlowControl = new System.Windows.Forms.Label();
			this.cmbFlowControl = new System.Windows.Forms.ComboBox();
			this.lblParity = new System.Windows.Forms.Label();
			this.lblStopBits = new System.Windows.Forms.Label();
			this.cmbParity = new System.Windows.Forms.ComboBox();
			this.btnConnect = new System.Windows.Forms.Button();
			this.btnDisconnect = new System.Windows.Forms.Button();
			this.cmbStopBits = new System.Windows.Forms.ComboBox();
			this.gbLog = new System.Windows.Forms.GroupBox();
			this.txtLog = new System.Windows.Forms.TextBox();
			this.modem = new Tollkuci.GsmModem.Modem(this.components);
			this.gbConnectionDetails.SuspendLayout();
			this.tableLayoutPanel1.SuspendLayout();
			this.gbLog.SuspendLayout();
			this.SuspendLayout();
			// 
			// gbConnectionDetails
			// 
			this.gbConnectionDetails.Controls.Add(this.tableLayoutPanel1);
			this.gbConnectionDetails.Location = new System.Drawing.Point(12, 12);
			this.gbConnectionDetails.Name = "gbConnectionDetails";
			this.gbConnectionDetails.Size = new System.Drawing.Size(573, 87);
			this.gbConnectionDetails.TabIndex = 0;
			this.gbConnectionDetails.TabStop = false;
			this.gbConnectionDetails.Text = "Connect";
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.ColumnCount = 7;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33334F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33334F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel1.Controls.Add(this.lblPort, 0, 0);
			this.tableLayoutPanel1.Controls.Add(this.txtPort, 1, 0);
			this.tableLayoutPanel1.Controls.Add(this.lblBaudRate, 2, 0);
			this.tableLayoutPanel1.Controls.Add(this.lblDataBits, 4, 0);
			this.tableLayoutPanel1.Controls.Add(this.txtBuadRate, 3, 0);
			this.tableLayoutPanel1.Controls.Add(this.txtDataBits, 5, 0);
			this.tableLayoutPanel1.Controls.Add(this.lblFlowControl, 0, 2);
			this.tableLayoutPanel1.Controls.Add(this.cmbFlowControl, 1, 2);
			this.tableLayoutPanel1.Controls.Add(this.lblParity, 2, 2);
			this.tableLayoutPanel1.Controls.Add(this.lblStopBits, 4, 2);
			this.tableLayoutPanel1.Controls.Add(this.cmbParity, 3, 2);
			this.tableLayoutPanel1.Controls.Add(this.btnConnect, 6, 0);
			this.tableLayoutPanel1.Controls.Add(this.btnDisconnect, 6, 2);
			this.tableLayoutPanel1.Controls.Add(this.cmbStopBits, 5, 2);
			this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 19);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 3;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.tableLayoutPanel1.Size = new System.Drawing.Size(561, 61);
			this.tableLayoutPanel1.TabIndex = 1;
			// 
			// lblPort
			// 
			this.lblPort.AutoSize = true;
			this.lblPort.Location = new System.Drawing.Point(3, 0);
			this.lblPort.Name = "lblPort";
			this.lblPort.Size = new System.Drawing.Size(26, 13);
			this.lblPort.TabIndex = 1;
			this.lblPort.Text = "Port";
			// 
			// txtPort
			// 
			this.txtPort.Location = new System.Drawing.Point(74, 3);
			this.txtPort.Name = "txtPort";
			this.txtPort.Size = new System.Drawing.Size(90, 20);
			this.txtPort.TabIndex = 0;
			this.txtPort.Text = "COM1";
			// 
			// lblBaudRate
			// 
			this.lblBaudRate.AutoSize = true;
			this.lblBaudRate.Location = new System.Drawing.Point(170, 0);
			this.lblBaudRate.Name = "lblBaudRate";
			this.lblBaudRate.Size = new System.Drawing.Size(58, 13);
			this.lblBaudRate.TabIndex = 2;
			this.lblBaudRate.Text = "Baud Rate";
			// 
			// lblDataBits
			// 
			this.lblDataBits.AutoSize = true;
			this.lblDataBits.Location = new System.Drawing.Point(330, 0);
			this.lblDataBits.Name = "lblDataBits";
			this.lblDataBits.Size = new System.Drawing.Size(50, 13);
			this.lblDataBits.TabIndex = 3;
			this.lblDataBits.Text = "Data Bits";
			// 
			// txtBuadRate
			// 
			this.txtBuadRate.Location = new System.Drawing.Point(234, 3);
			this.txtBuadRate.Name = "txtBuadRate";
			this.txtBuadRate.Size = new System.Drawing.Size(90, 20);
			this.txtBuadRate.TabIndex = 4;
			this.txtBuadRate.Text = "9600";
			// 
			// txtDataBits
			// 
			this.txtDataBits.Location = new System.Drawing.Point(386, 3);
			this.txtDataBits.Name = "txtDataBits";
			this.txtDataBits.Size = new System.Drawing.Size(90, 20);
			this.txtDataBits.TabIndex = 5;
			this.txtDataBits.Text = "8";
			// 
			// lblFlowControl
			// 
			this.lblFlowControl.AutoSize = true;
			this.lblFlowControl.Location = new System.Drawing.Point(3, 29);
			this.lblFlowControl.Name = "lblFlowControl";
			this.lblFlowControl.Size = new System.Drawing.Size(65, 13);
			this.lblFlowControl.TabIndex = 6;
			this.lblFlowControl.Text = "Flow Control";
			// 
			// cmbFlowControl
			// 
			this.cmbFlowControl.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbFlowControl.FormattingEnabled = true;
			this.cmbFlowControl.Items.AddRange(new object[] {
            "None",
            "Hardware",
            "Software"});
			this.cmbFlowControl.Location = new System.Drawing.Point(74, 32);
			this.cmbFlowControl.Name = "cmbFlowControl";
			this.cmbFlowControl.Size = new System.Drawing.Size(90, 21);
			this.cmbFlowControl.TabIndex = 7;
			// 
			// lblParity
			// 
			this.lblParity.AutoSize = true;
			this.lblParity.Location = new System.Drawing.Point(170, 29);
			this.lblParity.Name = "lblParity";
			this.lblParity.Size = new System.Drawing.Size(33, 13);
			this.lblParity.TabIndex = 8;
			this.lblParity.Text = "Parity";
			// 
			// lblStopBits
			// 
			this.lblStopBits.AutoSize = true;
			this.lblStopBits.Location = new System.Drawing.Point(330, 29);
			this.lblStopBits.Name = "lblStopBits";
			this.lblStopBits.Size = new System.Drawing.Size(49, 13);
			this.lblStopBits.TabIndex = 9;
			this.lblStopBits.Text = "Stop Bits";
			// 
			// cmbParity
			// 
			this.cmbParity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbParity.FormattingEnabled = true;
			this.cmbParity.Items.AddRange(new object[] {
            "None",
            "Odd",
            "Even",
            "Mark",
            "Space"});
			this.cmbParity.Location = new System.Drawing.Point(234, 32);
			this.cmbParity.Name = "cmbParity";
			this.cmbParity.Size = new System.Drawing.Size(90, 21);
			this.cmbParity.TabIndex = 10;
			// 
			// btnConnect
			// 
			this.btnConnect.Location = new System.Drawing.Point(482, 3);
			this.btnConnect.Name = "btnConnect";
			this.btnConnect.Size = new System.Drawing.Size(75, 23);
			this.btnConnect.TabIndex = 12;
			this.btnConnect.Text = "Connect";
			this.btnConnect.UseVisualStyleBackColor = true;
			this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
			// 
			// btnDisconnect
			// 
			this.btnDisconnect.Location = new System.Drawing.Point(482, 32);
			this.btnDisconnect.Name = "btnDisconnect";
			this.btnDisconnect.Size = new System.Drawing.Size(75, 23);
			this.btnDisconnect.TabIndex = 13;
			this.btnDisconnect.Text = "Disconnect";
			this.btnDisconnect.UseVisualStyleBackColor = true;
			this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
			// 
			// cmbStopBits
			// 
			this.cmbStopBits.FormattingEnabled = true;
			this.cmbStopBits.Items.AddRange(new object[] {
            "One",
            "OnePointFive",
            "Two"});
			this.cmbStopBits.Location = new System.Drawing.Point(386, 32);
			this.cmbStopBits.Name = "cmbStopBits";
			this.cmbStopBits.Size = new System.Drawing.Size(90, 21);
			this.cmbStopBits.TabIndex = 14;
			// 
			// gbLog
			// 
			this.gbLog.Controls.Add(this.txtLog);
			this.gbLog.Location = new System.Drawing.Point(12, 274);
			this.gbLog.Name = "gbLog";
			this.gbLog.Size = new System.Drawing.Size(573, 100);
			this.gbLog.TabIndex = 1;
			this.gbLog.TabStop = false;
			this.gbLog.Text = "Log";
			// 
			// txtLog
			// 
			this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill;
			this.txtLog.Location = new System.Drawing.Point(3, 16);
			this.txtLog.Multiline = true;
			this.txtLog.Name = "txtLog";
			this.txtLog.Size = new System.Drawing.Size(567, 81);
			this.txtLog.TabIndex = 0;
			// 
			// modem
			// 
			this.modem.BaudRate = 9600;
			this.modem.DataBits = 8;
			this.modem.FlowControl = Tollkuci.GsmModem.FlowControl.None;
			this.modem.IsConnected = false;
			this.modem.MessageMemory = Tollkuci.GsmModem.MessageMemory.SM;
			this.modem.Parity = Tollkuci.GsmModem.Parity.None;
			this.modem.Pin = null;
			this.modem.Port = "COM1";
			this.modem.StopBits = Tollkuci.GsmModem.StopBits.One;
			this.modem.NewMessageReceived += new System.EventHandler<Tollkuci.GsmModem.MessageEventArgs>(this.modem_NewMessageReceived);
			this.modem.Disconnected += new System.EventHandler(this.modem_Disconnected);
			this.modem.Connected += new System.EventHandler(this.modem_Connected);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(597, 386);
			this.Controls.Add(this.gbLog);
			this.Controls.Add(this.gbConnectionDetails);
			this.Name = "MainForm";
			this.Text = "Test Gsm Modem";
			this.gbConnectionDetails.ResumeLayout(false);
			this.tableLayoutPanel1.ResumeLayout(false);
			this.tableLayoutPanel1.PerformLayout();
			this.gbLog.ResumeLayout(false);
			this.gbLog.PerformLayout();
			this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.GroupBox gbConnectionDetails;
		private System.Windows.Forms.Label lblPort;
		private System.Windows.Forms.TextBox txtPort;
		private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
		private System.Windows.Forms.Label lblBaudRate;
		private System.Windows.Forms.Label lblDataBits;
		private System.Windows.Forms.TextBox txtBuadRate;
		private System.Windows.Forms.TextBox txtDataBits;
		private System.Windows.Forms.Label lblFlowControl;
		private System.Windows.Forms.ComboBox cmbFlowControl;
		private System.Windows.Forms.Label lblParity;
		private System.Windows.Forms.Label lblStopBits;
		private System.Windows.Forms.ComboBox cmbParity;
		private System.Windows.Forms.Button btnConnect;
		private System.Windows.Forms.Button btnDisconnect;
		private Tollkuci.GsmModem.Modem modem;
		private System.Windows.Forms.ComboBox cmbStopBits;
		private System.Windows.Forms.GroupBox gbLog;
		private System.Windows.Forms.TextBox txtLog;
	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品一线二线三线无人区| av电影天堂一区二区在线| 欧美精品在线视频| 日韩激情中文字幕| 欧美一区二区女人| 激情成人午夜视频| 久久精品一二三| 成人a免费在线看| 亚洲人被黑人高潮完整版| 日本福利一区二区| 五月天一区二区三区| 日韩午夜在线影院| 国产精品亚洲第一区在线暖暖韩国| 国产亚洲午夜高清国产拍精品| 成人一级黄色片| 亚洲黄色免费电影| 在线不卡一区二区| 国产成人无遮挡在线视频| 综合在线观看色| 欧美日韩一区二区在线观看视频 | 国产激情视频一区二区在线观看| 久久这里只有精品6| 99国产精品国产精品久久| 天天操天天干天天综合网| 久久日韩精品一区二区五区| 91亚洲精品久久久蜜桃| 日韩电影在线一区二区三区| 国产欧美日韩一区二区三区在线观看| 色婷婷综合久久久中文一区二区 | 亚洲特级片在线| 欧美日韩一区国产| 高清不卡一二三区| 亚洲成人免费视频| 中文字幕乱码亚洲精品一区| 欧美日韩国产电影| 成人永久免费视频| 秋霞影院一区二区| 一区二区三区蜜桃| 国产日产欧产精品推荐色| 欧美日韩视频专区在线播放| 高清不卡一区二区在线| 日本强好片久久久久久aaa| 中文字幕一区二区在线观看| 精品福利一区二区三区免费视频| 91久久人澡人人添人人爽欧美| 国产一区在线精品| 首页国产欧美久久| 国产精品精品国产色婷婷| 欧美不卡123| 在线观看精品一区| 成人精品视频一区二区三区尤物| 免费亚洲电影在线| 亚洲午夜免费福利视频| 亚洲欧洲精品一区二区三区不卡| 日韩精品自拍偷拍| 91.com视频| 欧美日韩在线播放| 一本久久a久久免费精品不卡| 国产成人免费在线| 黄一区二区三区| 免费成人小视频| 首页国产丝袜综合| 亚洲777理论| 一区二区免费看| 亚洲色图欧美在线| 中文字幕一区三区| 欧美国产精品一区| 中文久久乱码一区二区| 久久久久久久免费视频了| 日韩欧美成人一区| 欧美大片拔萝卜| 91精品国产综合久久香蕉的特点 | 国产精品麻豆久久久| 久久综合色婷婷| 日韩欧美一区二区在线视频| 欧美视频在线一区二区三区| 在线观看欧美黄色| 欧美在线制服丝袜| 欧美亚洲免费在线一区| 欧美亚洲综合在线| 欧美日韩免费观看一区二区三区| 精品1区2区3区| 91精品国产一区二区三区蜜臀 | 欧美aa在线视频| 日韩精品亚洲一区| 美日韩一区二区三区| 裸体歌舞表演一区二区| 日本 国产 欧美色综合| 激情av综合网| 国产成人aaaa| av电影在线不卡| 欧美视频日韩视频| 欧美丰满一区二区免费视频| 911精品国产一区二区在线| 日韩午夜在线影院| 国产女主播在线一区二区| 国产精品第一页第二页第三页| 1000精品久久久久久久久| 亚洲在线观看免费| 日本视频中文字幕一区二区三区| 极品美女销魂一区二区三区| 国产成a人亚洲精品| 色综合久久天天| 欧美一级精品大片| 国产蜜臀97一区二区三区 | 亚洲午夜电影网| 蜜桃av噜噜一区二区三区小说| 国产一区二区美女诱惑| 99精品热视频| 777午夜精品免费视频| 国产亚洲欧洲997久久综合| 亚洲欧洲制服丝袜| 美洲天堂一区二卡三卡四卡视频 | 青青草97国产精品免费观看| 国产一区久久久| 91亚洲精品久久久蜜桃| 欧美一区二区免费视频| 国产精品萝li| 日韩和欧美的一区| 不卡电影一区二区三区| 日韩一区二区在线观看视频 | 自拍偷拍国产精品| 日日夜夜精品视频天天综合网| 国产乱人伦精品一区二区在线观看 | 亚洲天堂成人在线观看| 日韩不卡一二三区| 99久久99久久免费精品蜜臀| 日韩欧美一区二区视频| 亚洲免费在线视频一区 二区| 久久机这里只有精品| 一本大道久久a久久精二百 | 欧美日韩高清一区二区不卡| 欧美国产国产综合| 久久精品免费看| 欧美日韩在线三区| 中文字幕一区二区不卡| 韩国v欧美v日本v亚洲v| 欧美撒尿777hd撒尿| 国产精品不卡视频| 久久er99热精品一区二区| 在线日韩av片| 亚洲色图丝袜美腿| 高清不卡一区二区| 精品国免费一区二区三区| 亚洲福利视频一区二区| www.在线成人| 国产网站一区二区| 激情综合网激情| 日韩欧美www| 视频在线观看一区| 欧美三级日韩在线| 一区二区三区四区不卡视频 | 久久www免费人成看片高清| 欧美日韩欧美一区二区| 亚洲综合久久久| 97久久超碰国产精品电影| 久久久亚洲国产美女国产盗摄| 日本aⅴ免费视频一区二区三区| 欧美性受xxxx黑人xyx性爽| 亚洲女爱视频在线| 91年精品国产| 成人免费一区二区三区在线观看 | 久久精品国产在热久久| 日韩一区二区在线观看视频 | 青青草视频一区| 欧美精品日韩综合在线| 五月激情综合网| 欧美日韩电影一区| 午夜电影久久久| 91精品国产综合久久久久久久久久 | 国产欧美综合色| 国产福利91精品一区二区三区| 久久免费午夜影院| 国产精品一品二品| 国产欧美日本一区视频| 成人福利视频网站| 国产女人18毛片水真多成人如厕 | 日韩av一级电影| 日韩视频一区二区三区| 久久99国内精品| 欧美精品一区二区三区蜜桃| 国产激情偷乱视频一区二区三区| 国产香蕉久久精品综合网| 成人精品一区二区三区四区| 亚洲视频网在线直播| 欧美在线看片a免费观看| 日韩精品五月天| 久久综合九色综合97_久久久| 国产成人精品免费网站| 中文字幕日韩一区二区| 日本福利一区二区| 免费av网站大全久久| 国产亲近乱来精品视频| 色88888久久久久久影院野外| 五月婷婷综合网| 久久精品夜色噜噜亚洲a∨| 91丨porny丨户外露出| 日本网站在线观看一区二区三区| 久久久精品欧美丰满| 在线观看一区二区精品视频|