📄 frmzip.designer.cs
字号:
namespace ZipApp
{
partial class FrmZip
{
/// <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.txtZip = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.btnZip = new System.Windows.Forms.Button();
this.btnView = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.txtUZip = new System.Windows.Forms.TextBox();
this.btnSel = new System.Windows.Forms.Button();
this.txtPath = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.btnSelectPath = new System.Windows.Forms.Button();
this.btnS = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtZip
//
this.txtZip.Location = new System.Drawing.Point(95, 22);
this.txtZip.Name = "txtZip";
this.txtZip.Size = new System.Drawing.Size(108, 21);
this.txtZip.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(5, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 12);
this.label1.TabIndex = 1;
this.label1.Text = "源文件目录:";
//
// button1
//
this.button1.Location = new System.Drawing.Point(210, 22);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(61, 23);
this.button1.TabIndex = 2;
this.button1.Text = "选择文件";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// btnZip
//
this.btnZip.Location = new System.Drawing.Point(45, 150);
this.btnZip.Name = "btnZip";
this.btnZip.Size = new System.Drawing.Size(75, 23);
this.btnZip.TabIndex = 3;
this.btnZip.Text = "压缩";
this.btnZip.UseVisualStyleBackColor = true;
this.btnZip.Click += new System.EventHandler(this.btnZip_Click);
//
// btnView
//
this.btnView.Location = new System.Drawing.Point(277, 22);
this.btnView.Name = "btnView";
this.btnView.Size = new System.Drawing.Size(75, 23);
this.btnView.TabIndex = 4;
this.btnView.Text = "压缩文件夹";
this.btnView.UseVisualStyleBackColor = true;
this.btnView.Click += new System.EventHandler(this.btnView_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(4, 69);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 12);
this.label2.TabIndex = 5;
this.label2.Text = "要解压的文件:";
//
// txtUZip
//
this.txtUZip.Location = new System.Drawing.Point(95, 64);
this.txtUZip.Name = "txtUZip";
this.txtUZip.Size = new System.Drawing.Size(131, 21);
this.txtUZip.TabIndex = 6;
//
// btnSel
//
this.btnSel.Location = new System.Drawing.Point(232, 62);
this.btnSel.Name = "btnSel";
this.btnSel.Size = new System.Drawing.Size(110, 23);
this.btnSel.TabIndex = 7;
this.btnSel.Text = "选择文件(.rar)";
this.btnSel.UseVisualStyleBackColor = true;
this.btnSel.Click += new System.EventHandler(this.btnSel_Click);
//
// txtPath
//
this.txtPath.Location = new System.Drawing.Point(95, 110);
this.txtPath.Name = "txtPath";
this.txtPath.Size = new System.Drawing.Size(131, 21);
this.txtPath.TabIndex = 8;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(4, 119);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(89, 12);
this.label3.TabIndex = 9;
this.label3.Text = "目标文件目录:\r\n";
//
// btnSelectPath
//
this.btnSelectPath.Location = new System.Drawing.Point(232, 108);
this.btnSelectPath.Name = "btnSelectPath";
this.btnSelectPath.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.btnSelectPath.Size = new System.Drawing.Size(110, 23);
this.btnSelectPath.TabIndex = 10;
this.btnSelectPath.Text = "选择路径:";
this.btnSelectPath.UseVisualStyleBackColor = true;
//
// btnS
//
this.btnS.Location = new System.Drawing.Point(236, 150);
this.btnS.Name = "btnS";
this.btnS.Size = new System.Drawing.Size(75, 23);
this.btnS.TabIndex = 11;
this.btnS.Text = "解压";
this.btnS.UseVisualStyleBackColor = true;
this.btnS.Click += new System.EventHandler(this.btnS_Click);
//
// FrmZip
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(364, 189);
this.Controls.Add(this.btnS);
this.Controls.Add(this.btnSelectPath);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtPath);
this.Controls.Add(this.btnSel);
this.Controls.Add(this.txtUZip);
this.Controls.Add(this.label2);
this.Controls.Add(this.btnView);
this.Controls.Add(this.btnZip);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.Controls.Add(this.txtZip);
this.Name = "FrmZip";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtZip;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button btnZip;
private System.Windows.Forms.Button btnView;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtUZip;
private System.Windows.Forms.Button btnSel;
private System.Windows.Forms.TextBox txtPath;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnSelectPath;
private System.Windows.Forms.Button btnS;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -