📄 frmbackup.designer.cs
字号:
namespace BackupSystem.UILayer
{
partial class FrmBackup
{
/// <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.components = new System.ComponentModel.Container();
this.timer = new System.Windows.Forms.Timer(this.components);
this.progressBar = new System.Windows.Forms.ProgressBar();
this.lblFile = new System.Windows.Forms.Label();
this.lblPercentage = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// timer
//
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(23, 29);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(248, 23);
this.progressBar.Step = 1;
this.progressBar.TabIndex = 0;
//
// lblFile
//
this.lblFile.AutoSize = true;
this.lblFile.Font = new System.Drawing.Font("宋体", 9F);
this.lblFile.Location = new System.Drawing.Point(21, 9);
this.lblFile.Name = "lblFile";
this.lblFile.Size = new System.Drawing.Size(29, 12);
this.lblFile.TabIndex = 1;
this.lblFile.Text = "File";
//
// lblPercentage
//
this.lblPercentage.AutoSize = true;
this.lblPercentage.Font = new System.Drawing.Font("宋体", 12F);
this.lblPercentage.Location = new System.Drawing.Point(121, 33);
this.lblPercentage.Name = "lblPercentage";
this.lblPercentage.Size = new System.Drawing.Size(24, 16);
this.lblPercentage.TabIndex = 2;
this.lblPercentage.Text = "0%";
this.lblPercentage.Click += new System.EventHandler(this.lblPercentage_Click);
//
// FrmBackup
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
this.ClientSize = new System.Drawing.Size(292, 79);
this.Controls.Add(this.lblPercentage);
this.Controls.Add(this.lblFile);
this.Controls.Add(this.progressBar);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmBackup";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "正在备份...";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Timer timer;
private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.Label lblFile;
private System.Windows.Forms.Label lblPercentage;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -