fbackup.designer.cs
来自「 一个用C#编写的图书管系统」· CS 代码 · 共 105 行
CS
105 行
namespace Library
{
partial class fBackup
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fBackup));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btCancel = new System.Windows.Forms.Button();
this.btBackup = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btCancel);
this.groupBox1.Controls.Add(this.btBackup);
this.groupBox1.Location = new System.Drawing.Point(19, 109);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(253, 74);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "操作结果";
//
// btCancel
//
this.btCancel.Location = new System.Drawing.Point(149, 26);
this.btCancel.Name = "btCancel";
this.btCancel.Size = new System.Drawing.Size(81, 23);
this.btCancel.TabIndex = 2;
this.btCancel.Text = "退出";
this.btCancel.UseVisualStyleBackColor = true;
this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
//
// btBackup
//
this.btBackup.Location = new System.Drawing.Point(19, 26);
this.btBackup.Name = "btBackup";
this.btBackup.Size = new System.Drawing.Size(92, 23);
this.btBackup.TabIndex = 1;
this.btBackup.Text = "创建今日备份";
this.btBackup.UseVisualStyleBackColor = true;
this.btBackup.Click += new System.EventHandler(this.btBackup_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("楷体_GB2312", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(68, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(154, 24);
this.label1.TabIndex = 1;
this.label1.Text = "数据库的备份";
//
// fBackup
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(290, 220);
this.Controls.Add(this.label1);
this.Controls.Add(this.groupBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "fBackup";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "数据库的恢复和备份";
this.Load += new System.EventHandler(this.fBackup_Load);
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btCancel;
private System.Windows.Forms.Button btBackup;
private System.Windows.Forms.Label label1;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?