📄 form1.designer.cs
字号:
namespace SqlMobileManagement
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.btnCreate = new System.Windows.Forms.Button();
this.btnRepair = new System.Windows.Forms.Button();
this.btnCompress = new System.Windows.Forms.Button();
this.btnShrink = new System.Windows.Forms.Button();
this.btnException = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItem1);
//
// menuItem1
//
this.menuItem1.Text = "退出";
this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
//
// btnCreate
//
this.btnCreate.Location = new System.Drawing.Point(66, 40);
this.btnCreate.Name = "btnCreate";
this.btnCreate.Size = new System.Drawing.Size(111, 26);
this.btnCreate.TabIndex = 0;
this.btnCreate.Text = "创建数据库";
this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
//
// btnRepair
//
this.btnRepair.Location = new System.Drawing.Point(66, 83);
this.btnRepair.Name = "btnRepair";
this.btnRepair.Size = new System.Drawing.Size(111, 26);
this.btnRepair.TabIndex = 1;
this.btnRepair.Text = "修复数据库";
this.btnRepair.Click += new System.EventHandler(this.btnRepair_Click);
//
// btnCompress
//
this.btnCompress.Location = new System.Drawing.Point(66, 126);
this.btnCompress.Name = "btnCompress";
this.btnCompress.Size = new System.Drawing.Size(111, 26);
this.btnCompress.TabIndex = 2;
this.btnCompress.Text = "压缩数据库";
this.btnCompress.Click += new System.EventHandler(this.btnCompress_Click);
//
// btnShrink
//
this.btnShrink.Location = new System.Drawing.Point(66, 169);
this.btnShrink.Name = "btnShrink";
this.btnShrink.Size = new System.Drawing.Size(111, 26);
this.btnShrink.TabIndex = 3;
this.btnShrink.Text = "收缩数据库";
this.btnShrink.Click += new System.EventHandler(this.btnShrink_Click);
//
// btnException
//
this.btnException.Location = new System.Drawing.Point(66, 212);
this.btnException.Name = "btnException";
this.btnException.Size = new System.Drawing.Size(111, 26);
this.btnException.TabIndex = 4;
this.btnException.Text = "处理异常";
this.btnException.Click += new System.EventHandler(this.btnException_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.btnException);
this.Controls.Add(this.btnShrink);
this.Controls.Add(this.btnCompress);
this.Controls.Add(this.btnRepair);
this.Controls.Add(this.btnCreate);
this.Menu = this.mainMenu1;
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnCreate;
private System.Windows.Forms.Button btnRepair;
private System.Windows.Forms.Button btnCompress;
private System.Windows.Forms.Button btnShrink;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.Button btnException;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -