📄 frmmain.designer.cs
字号:
/*
* Created by SharpDevelop.
* User: HeadCQ
* Date: 2008-3-28
* Time: 15:03
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace Test
{
partial class frmMain
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.btnTest = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnTest
//
this.btnTest.Location = new System.Drawing.Point(168, 186);
this.btnTest.Name = "btnTest";
this.btnTest.Size = new System.Drawing.Size(108, 32);
this.btnTest.TabIndex = 0;
this.btnTest.Text = "button1";
this.btnTest.UseVisualStyleBackColor = true;
this.btnTest.Click += new System.EventHandler(this.BtnTestClick);
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(549, 382);
this.Controls.Add(this.btnTest);
this.Name = "frmMain";
this.Text = "Test";
this.ResumeLayout(false);
}
private System.Windows.Forms.Button btnTest;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -