📄 entrysettingpanel.designer.cs
字号:
namespace BackupSystem.Controls
{
partial class EntrySettingPanel
{
/// <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 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
this.label1 = new System.Windows.Forms.Label();
this.txtOriginal = new System.Windows.Forms.TextBox();
this.btnBrowseOriginal = new System.Windows.Forms.Button();
this.btnBrowseTarget = new System.Windows.Forms.Button();
this.txtTarget = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtID = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.btnBrowseFile = new System.Windows.Forms.Button();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 41);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 0;
this.label1.Text = "源文件(夹)";
//
// txtOriginal
//
this.txtOriginal.Location = new System.Drawing.Point(74, 37);
this.txtOriginal.Name = "txtOriginal";
this.txtOriginal.Size = new System.Drawing.Size(157, 21);
this.txtOriginal.TabIndex = 1;
//
// btnBrowseOriginal
//
this.btnBrowseOriginal.Location = new System.Drawing.Point(322, 37);
this.btnBrowseOriginal.Name = "btnBrowseOriginal";
this.btnBrowseOriginal.Size = new System.Drawing.Size(75, 23);
this.btnBrowseOriginal.TabIndex = 2;
this.btnBrowseOriginal.Text = "文件夹...";
this.btnBrowseOriginal.UseVisualStyleBackColor = true;
this.btnBrowseOriginal.Click += new System.EventHandler(this.btnBrowseOriginal_Click);
//
// btnBrowseTarget
//
this.btnBrowseTarget.Location = new System.Drawing.Point(322, 62);
this.btnBrowseTarget.Name = "btnBrowseTarget";
this.btnBrowseTarget.Size = new System.Drawing.Size(75, 23);
this.btnBrowseTarget.TabIndex = 5;
this.btnBrowseTarget.Text = "文件夹...";
this.btnBrowseTarget.UseVisualStyleBackColor = true;
this.btnBrowseTarget.Click += new System.EventHandler(this.btnBrowseTarget_Click);
//
// txtTarget
//
this.txtTarget.Location = new System.Drawing.Point(74, 66);
this.txtTarget.Name = "txtTarget";
this.txtTarget.Size = new System.Drawing.Size(242, 21);
this.txtTarget.TabIndex = 4;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 72);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 3;
this.label2.Text = "目标文件夹";
//
// txtID
//
this.txtID.Location = new System.Drawing.Point(74, 3);
this.txtID.Name = "txtID";
this.txtID.Size = new System.Drawing.Size(323, 21);
this.txtID.TabIndex = 7;
this.txtID.Text = "新建备份项目";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 7);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 6;
this.label3.Text = "项目名称";
//
// btnBrowseFile
//
this.btnBrowseFile.Location = new System.Drawing.Point(241, 37);
this.btnBrowseFile.Name = "btnBrowseFile";
this.btnBrowseFile.Size = new System.Drawing.Size(75, 23);
this.btnBrowseFile.TabIndex = 8;
this.btnBrowseFile.Text = "文件...";
this.btnBrowseFile.UseVisualStyleBackColor = true;
this.btnBrowseFile.Click += new System.EventHandler(this.btnBrowseFile_Click);
//
// openFileDialog
//
this.openFileDialog.FileName = "openFileDialog1";
this.openFileDialog.Title = "选择源文件";
//
// EntrySettingPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btnBrowseFile);
this.Controls.Add(this.txtID);
this.Controls.Add(this.label3);
this.Controls.Add(this.btnBrowseTarget);
this.Controls.Add(this.txtTarget);
this.Controls.Add(this.label2);
this.Controls.Add(this.btnBrowseOriginal);
this.Controls.Add(this.txtOriginal);
this.Controls.Add(this.label1);
this.Name = "EntrySettingPanel";
this.Size = new System.Drawing.Size(400, 125);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtOriginal;
private System.Windows.Forms.Button btnBrowseOriginal;
private System.Windows.Forms.Button btnBrowseTarget;
private System.Windows.Forms.TextBox txtTarget;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtID;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnBrowseFile;
private System.Windows.Forms.OpenFileDialog openFileDialog;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -