📄 frmconnection.designer.cs
字号:
namespace SMSServer
{
partial class frmConnection
{
/// <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.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.lblTimeout = new System.Windows.Forms.Label();
this.lblBaudRate = new System.Windows.Forms.Label();
this.cboTimeout = new System.Windows.Forms.ComboBox();
this.lblPort = new System.Windows.Forms.Label();
this.cboPort = new System.Windows.Forms.ComboBox();
this.cboBaudRate = new System.Windows.Forms.ComboBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.btnTest = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.panel1.Controls.Add(this.label1);
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(342, 44);
this.panel1.TabIndex = 18;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.HotTrack;
this.label1.Location = new System.Drawing.Point(63, 7);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(223, 29);
this.label1.TabIndex = 0;
this.label1.Text = "WSIS SMS Server";
//
// panel2
//
this.panel2.Controls.Add(this.lblTimeout);
this.panel2.Controls.Add(this.lblBaudRate);
this.panel2.Controls.Add(this.cboTimeout);
this.panel2.Controls.Add(this.lblPort);
this.panel2.Controls.Add(this.cboPort);
this.panel2.Controls.Add(this.cboBaudRate);
this.panel2.Location = new System.Drawing.Point(0, 49);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(342, 122);
this.panel2.TabIndex = 19;
//
// lblTimeout
//
this.lblTimeout.AutoSize = true;
this.lblTimeout.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTimeout.ForeColor = System.Drawing.Color.Transparent;
this.lblTimeout.Location = new System.Drawing.Point(52, 72);
this.lblTimeout.Name = "lblTimeout";
this.lblTimeout.Size = new System.Drawing.Size(83, 15);
this.lblTimeout.TabIndex = 19;
this.lblTimeout.Text = "Ti&meout (ms):";
this.lblTimeout.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblBaudRate
//
this.lblBaudRate.AutoSize = true;
this.lblBaudRate.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblBaudRate.ForeColor = System.Drawing.Color.Transparent;
this.lblBaudRate.Location = new System.Drawing.Point(72, 48);
this.lblBaudRate.Name = "lblBaudRate";
this.lblBaudRate.Size = new System.Drawing.Size(63, 15);
this.lblBaudRate.TabIndex = 17;
this.lblBaudRate.Text = "&Baud rate:";
this.lblBaudRate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cboTimeout
//
this.cboTimeout.Location = new System.Drawing.Point(156, 72);
this.cboTimeout.Name = "cboTimeout";
this.cboTimeout.Size = new System.Drawing.Size(104, 21);
this.cboTimeout.TabIndex = 20;
//
// lblPort
//
this.lblPort.AutoSize = true;
this.lblPort.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblPort.ForeColor = System.Drawing.Color.Transparent;
this.lblPort.Location = new System.Drawing.Point(71, 24);
this.lblPort.Name = "lblPort";
this.lblPort.Size = new System.Drawing.Size(64, 15);
this.lblPort.TabIndex = 15;
this.lblPort.Text = "&COM-Port:";
this.lblPort.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cboPort
//
this.cboPort.Location = new System.Drawing.Point(156, 24);
this.cboPort.Name = "cboPort";
this.cboPort.Size = new System.Drawing.Size(104, 21);
this.cboPort.TabIndex = 16;
//
// cboBaudRate
//
this.cboBaudRate.Location = new System.Drawing.Point(156, 48);
this.cboBaudRate.Name = "cboBaudRate";
this.cboBaudRate.Size = new System.Drawing.Size(104, 21);
this.cboBaudRate.TabIndex = 18;
//
// btnOK
//
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnOK.Location = new System.Drawing.Point(130, 180);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 16;
this.btnOK.Text = "OK";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnCancel.Location = new System.Drawing.Point(218, 180);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 17;
this.btnCancel.Text = "Cancel";
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnTest
//
this.btnTest.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnTest.Location = new System.Drawing.Point(42, 180);
this.btnTest.Name = "btnTest";
this.btnTest.Size = new System.Drawing.Size(75, 23);
this.btnTest.TabIndex = 15;
this.btnTest.Text = "&Test";
this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
//
// frmConnection
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DimGray;
this.ClientSize = new System.Drawing.Size(340, 223);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btnTest);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Name = "frmConnection";
this.Text = "Modem Settings";
this.Load += new System.EventHandler(this.frmConnection_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Label lblTimeout;
private System.Windows.Forms.Label lblBaudRate;
private System.Windows.Forms.ComboBox cboTimeout;
private System.Windows.Forms.Label lblPort;
private System.Windows.Forms.ComboBox cboPort;
private System.Windows.Forms.ComboBox cboBaudRate;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnTest;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -