demo.designer.cs
来自「< SQL Server2005程序设计>」· CS 代码 · 共 88 行
CS
88 行
namespace CS_Forms
{
partial class Demo
{
/// <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.btnRender = new System.Windows.Forms.Button();
this.btnService = new System.Windows.Forms.Button();
this.btnSimple = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnRender
//
this.btnRender.Location = new System.Drawing.Point(109, 160);
this.btnRender.Name = "btnRender";
this.btnRender.Size = new System.Drawing.Size(75, 23);
this.btnRender.TabIndex = 5;
this.btnRender.Text = "Render";
this.btnRender.UseVisualStyleBackColor = true;
this.btnRender.Click += new System.EventHandler(this.btnRender_Click);
//
// btnService
//
this.btnService.Location = new System.Drawing.Point(109, 105);
this.btnService.Name = "btnService";
this.btnService.Size = new System.Drawing.Size(75, 23);
this.btnService.TabIndex = 4;
this.btnService.Text = "Service";
this.btnService.UseVisualStyleBackColor = true;
this.btnService.Click += new System.EventHandler(this.btnService_Click);
//
// btnSimple
//
this.btnSimple.Location = new System.Drawing.Point(109, 50);
this.btnSimple.Name = "btnSimple";
this.btnSimple.Size = new System.Drawing.Size(75, 23);
this.btnSimple.TabIndex = 3;
this.btnSimple.Text = "Simple";
this.btnSimple.UseVisualStyleBackColor = true;
this.btnSimple.Click += new System.EventHandler(this.btnSimple_Click);
//
// Demo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.btnRender);
this.Controls.Add(this.btnService);
this.Controls.Add(this.btnSimple);
this.Name = "Demo";
this.Text = "Demo CS";
this.ResumeLayout(false);
}
#endregion
internal System.Windows.Forms.Button btnRender;
internal System.Windows.Forms.Button btnService;
internal System.Windows.Forms.Button btnSimple;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?