📄 form1.designer.cs
字号:
namespace LZW
{
partial class FrmLZW
{
/// <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.txtSourceFile = new System.Windows.Forms.TextBox();
this.txtFile = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnOpen1 = new System.Windows.Forms.Button();
this.btnOpen2 = new System.Windows.Forms.Button();
this.btnY = new System.Windows.Forms.Button();
this.btnJ = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// txtSourceFile
//
this.txtSourceFile.Location = new System.Drawing.Point(82, 28);
this.txtSourceFile.Name = "txtSourceFile";
this.txtSourceFile.Size = new System.Drawing.Size(341, 21);
this.txtSourceFile.TabIndex = 0;
//
// txtFile
//
this.txtFile.Location = new System.Drawing.Point(82, 75);
this.txtFile.Name = "txtFile";
this.txtFile.Size = new System.Drawing.Size(341, 21);
this.txtFile.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 37);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 2;
this.label1.Text = "源文件";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 84);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 3;
this.label2.Text = "压缩文件";
//
// btnOpen1
//
this.btnOpen1.Location = new System.Drawing.Point(439, 25);
this.btnOpen1.Name = "btnOpen1";
this.btnOpen1.Size = new System.Drawing.Size(60, 23);
this.btnOpen1.TabIndex = 4;
this.btnOpen1.Text = "浏览";
this.btnOpen1.UseVisualStyleBackColor = true;
this.btnOpen1.Click += new System.EventHandler(this.btnOpen1_Click);
//
// btnOpen2
//
this.btnOpen2.Location = new System.Drawing.Point(439, 73);
this.btnOpen2.Name = "btnOpen2";
this.btnOpen2.Size = new System.Drawing.Size(60, 23);
this.btnOpen2.TabIndex = 5;
this.btnOpen2.Text = "浏览";
this.btnOpen2.UseVisualStyleBackColor = true;
this.btnOpen2.Click += new System.EventHandler(this.btnOpen2_Click);
//
// btnY
//
this.btnY.Location = new System.Drawing.Point(82, 125);
this.btnY.Name = "btnY";
this.btnY.Size = new System.Drawing.Size(142, 23);
this.btnY.TabIndex = 6;
this.btnY.Text = "压缩";
this.btnY.UseVisualStyleBackColor = true;
this.btnY.Click += new System.EventHandler(this.btnY_Click);
//
// btnJ
//
this.btnJ.Location = new System.Drawing.Point(282, 125);
this.btnJ.Name = "btnJ";
this.btnJ.Size = new System.Drawing.Size(141, 23);
this.btnJ.TabIndex = 7;
this.btnJ.Text = "解压";
this.btnJ.UseVisualStyleBackColor = true;
this.btnJ.Click += new System.EventHandler(this.btnJ_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// FrmLZW
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(526, 168);
this.Controls.Add(this.btnJ);
this.Controls.Add(this.btnY);
this.Controls.Add(this.btnOpen2);
this.Controls.Add(this.btnOpen1);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.txtFile);
this.Controls.Add(this.txtSourceFile);
this.Name = "FrmLZW";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtSourceFile;
private System.Windows.Forms.TextBox txtFile;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnOpen1;
private System.Windows.Forms.Button btnOpen2;
private System.Windows.Forms.Button btnY;
private System.Windows.Forms.Button btnJ;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -