📄 frmbackup.designer.cs
字号:
namespace UI
{
partial class backup
{
/// <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(backup));
this.lblbackup = new System.Windows.Forms.Label();
this.labbackup = new System.Windows.Forms.Label();
this.txtbackupPath = new System.Windows.Forms.TextBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.btnBackup = new System.Windows.Forms.Button();
this.btnCancelBackup = new System.Windows.Forms.Button();
this.sfdBackUp = new System.Windows.Forms.SaveFileDialog();
this.btnBrowse = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// lblbackup
//
this.lblbackup.AutoEllipsis = true;
this.lblbackup.AutoSize = true;
this.lblbackup.Font = new System.Drawing.Font("宋体", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblbackup.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
this.lblbackup.Location = new System.Drawing.Point(241, 12);
this.lblbackup.Name = "lblbackup";
this.lblbackup.Size = new System.Drawing.Size(155, 35);
this.lblbackup.TabIndex = 0;
this.lblbackup.Text = "信息备份";
this.lblbackup.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// labbackup
//
this.labbackup.AutoSize = true;
this.labbackup.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.labbackup.Location = new System.Drawing.Point(56, 293);
this.labbackup.Name = "labbackup";
this.labbackup.Size = new System.Drawing.Size(114, 19);
this.labbackup.TabIndex = 1;
this.labbackup.Text = "备份放置在:";
//
// txtbackupPath
//
this.txtbackupPath.Location = new System.Drawing.Point(166, 293);
this.txtbackupPath.Name = "txtbackupPath";
this.txtbackupPath.Size = new System.Drawing.Size(256, 21);
this.txtbackupPath.TabIndex = 2;
//
// textBox1
//
this.textBox1.BackColor = System.Drawing.SystemColors.InactiveBorder;
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBox1.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox1.Location = new System.Drawing.Point(176, 74);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(295, 205);
this.textBox1.TabIndex = 3;
this.textBox1.Text = "为了使本系统更安全更正常的工作,请你定时对系统进行备份工作,以便当数据库被意外的破坏或被不正确的修改后,你能恢复到一个你先备份时的状态.\r\n\r\n\r\n\r\n";
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// textBox2
//
this.textBox2.BackColor = System.Drawing.SystemColors.InactiveBorder;
this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBox2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox2.ForeColor = System.Drawing.Color.Red;
this.textBox2.Location = new System.Drawing.Point(176, 195);
this.textBox2.Multiline = true;
this.textBox2.Name = "textBox2";
this.textBox2.ReadOnly = true;
this.textBox2.Size = new System.Drawing.Size(295, 84);
this.textBox2.TabIndex = 4;
this.textBox2.Text = "注意:本系统在进行创建备份时将会自动断开数据库的连接,所以请确保当前所有数据均已保存,并且所有客户端无已退出本系统";
this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// btnBackup
//
this.btnBackup.Location = new System.Drawing.Point(112, 324);
this.btnBackup.Name = "btnBackup";
this.btnBackup.Size = new System.Drawing.Size(89, 36);
this.btnBackup.TabIndex = 5;
this.btnBackup.Text = "开始备份";
this.btnBackup.UseVisualStyleBackColor = true;
this.btnBackup.Click += new System.EventHandler(this.btnBackup_Click);
//
// btnCancelBackup
//
this.btnCancelBackup.Location = new System.Drawing.Point(287, 324);
this.btnCancelBackup.Name = "btnCancelBackup";
this.btnCancelBackup.Size = new System.Drawing.Size(89, 36);
this.btnCancelBackup.TabIndex = 6;
this.btnCancelBackup.Text = "取消备份";
this.btnCancelBackup.UseVisualStyleBackColor = true;
this.btnCancelBackup.Click += new System.EventHandler(this.btnCancelBackup_Click);
//
// btnBrowse
//
this.btnBrowse.Image = ((System.Drawing.Image)(resources.GetObject("btnBrowse.Image")));
this.btnBrowse.Location = new System.Drawing.Point(398, 293);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(24, 22);
this.btnBrowse.TabIndex = 9;
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(11, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(159, 267);
this.pictureBox1.TabIndex = 7;
this.pictureBox1.TabStop = false;
//
// backup
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(489, 363);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.btnCancelBackup);
this.Controls.Add(this.btnBackup);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.txtbackupPath);
this.Controls.Add(this.labbackup);
this.Controls.Add(this.lblbackup);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(497, 397);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(497, 397);
this.Name = "backup";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "备份管理";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblbackup;
private System.Windows.Forms.Label labbackup;
private System.Windows.Forms.TextBox txtbackupPath;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Button btnBackup;
private System.Windows.Forms.Button btnCancelBackup;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button btnBrowse;
private System.Windows.Forms.SaveFileDialog sfdBackUp;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -