116 lines
4.4 KiB
C#
116 lines
4.4 KiB
C#
|
namespace NNLightTest
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 必需的设计器变量。
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 清理所有正在使用的资源。
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows 窗体设计器生成的代码
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 设计器支持所需的方法 - 不要
|
|||
|
/// 使用代码编辑器修改此方法的内容。
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|||
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|||
|
this.tabPage2 = new System.Windows.Forms.TabPage();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.btnLights = new System.Windows.Forms.Button();
|
|||
|
this.tabControl1.SuspendLayout();
|
|||
|
this.tabPage1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// tabControl1
|
|||
|
//
|
|||
|
this.tabControl1.Controls.Add(this.tabPage1);
|
|||
|
this.tabControl1.Controls.Add(this.tabPage2);
|
|||
|
this.tabControl1.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.tabControl1.Name = "tabControl1";
|
|||
|
this.tabControl1.SelectedIndex = 0;
|
|||
|
this.tabControl1.Size = new System.Drawing.Size(554, 445);
|
|||
|
this.tabControl1.TabIndex = 3;
|
|||
|
//
|
|||
|
// tabPage1
|
|||
|
//
|
|||
|
this.tabPage1.Controls.Add(this.btnLights);
|
|||
|
this.tabPage1.Controls.Add(this.label1);
|
|||
|
this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
|||
|
this.tabPage1.Name = "tabPage1";
|
|||
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
|||
|
this.tabPage1.Size = new System.Drawing.Size(546, 419);
|
|||
|
this.tabPage1.TabIndex = 0;
|
|||
|
this.tabPage1.Text = "基本功能";
|
|||
|
this.tabPage1.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// tabPage2
|
|||
|
//
|
|||
|
this.tabPage2.Location = new System.Drawing.Point(4, 22);
|
|||
|
this.tabPage2.Name = "tabPage2";
|
|||
|
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
|||
|
this.tabPage2.Size = new System.Drawing.Size(546, 419);
|
|||
|
this.tabPage2.TabIndex = 1;
|
|||
|
this.tabPage2.Text = "高级功能";
|
|||
|
this.tabPage2.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(28, 130);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(41, 12);
|
|||
|
this.label1.TabIndex = 2;
|
|||
|
this.label1.Text = "label1";
|
|||
|
//
|
|||
|
// btnLights
|
|||
|
//
|
|||
|
this.btnLights.Location = new System.Drawing.Point(30, 70);
|
|||
|
this.btnLights.Name = "btnLights";
|
|||
|
this.btnLights.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.btnLights.TabIndex = 3;
|
|||
|
this.btnLights.Text = "点亮一组灯光";
|
|||
|
this.btnLights.UseVisualStyleBackColor = true;
|
|||
|
this.btnLights.Click += new System.EventHandler(this.btnLights_Click);
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(578, 469);
|
|||
|
this.Controls.Add(this.tabControl1);
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Form1";
|
|||
|
this.tabControl1.ResumeLayout(false);
|
|||
|
this.tabPage1.ResumeLayout(false);
|
|||
|
this.tabPage1.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.TabControl tabControl1;
|
|||
|
private System.Windows.Forms.TabPage tabPage1;
|
|||
|
private System.Windows.Forms.TabPage tabPage2;
|
|||
|
private System.Windows.Forms.Button btnLights;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
}
|
|||
|
}
|
|||
|
|