📄 setting.designer.cs
字号:
namespace PTZTest
{
partial class FrmSetting
{
/// <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.label1 = new System.Windows.Forms.Label();
this.cmbComPort = new System.Windows.Forms.ComboBox();
this.cmbBaudrate = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.BtnOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(24, 12);
this.label1.TabIndex = 0;
this.label1.Text = "Port";
//
// cmbComPort
//
this.cmbComPort.FormattingEnabled = true;
this.cmbComPort.Location = new System.Drawing.Point(57, 6);
this.cmbComPort.Name = "cmbComPort";
this.cmbComPort.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.cmbComPort.Size = new System.Drawing.Size(61, 20);
this.cmbComPort.TabIndex = 1;
//
// cmbBaudrate
//
this.cmbBaudrate.FormattingEnabled = true;
this.cmbBaudrate.Location = new System.Drawing.Point(57, 32);
this.cmbBaudrate.Name = "cmbBaudrate";
this.cmbBaudrate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.cmbBaudrate.Size = new System.Drawing.Size(61, 20);
this.cmbBaudrate.TabIndex = 3;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(4, 35);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 12);
this.label2.TabIndex = 2;
this.label2.Text = "Baudrate";
//
// BtnOK
//
this.BtnOK.Location = new System.Drawing.Point(30, 79);
this.BtnOK.Name = "BtnOK";
this.BtnOK.Size = new System.Drawing.Size(75, 23);
this.BtnOK.TabIndex = 4;
this.BtnOK.Text = "OK";
this.BtnOK.UseVisualStyleBackColor = true;
this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
//
// FrmSetting
//
this.AcceptButton = this.BtnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(138, 114);
this.Controls.Add(this.BtnOK);
this.Controls.Add(this.cmbBaudrate);
this.Controls.Add(this.label2);
this.Controls.Add(this.cmbComPort);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmSetting";
this.Text = "Setting";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox cmbComPort;
private System.Windows.Forms.ComboBox cmbBaudrate;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button BtnOK;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -