📄 form1.designer.cs
字号:
namespace ZipDotNet
{
partial class Form1
{
/// <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.tbStr = new System.Windows.Forms.TextBox();
this.btnZip = new System.Windows.Forms.Button();
this.btnUnZip = new System.Windows.Forms.Button();
this.tbBytesD = new System.Windows.Forms.TextBox();
this.tbBytesS = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// tbStr
//
this.tbStr.Location = new System.Drawing.Point(12, 12);
this.tbStr.Name = "tbStr";
this.tbStr.Size = new System.Drawing.Size(521, 21);
this.tbStr.TabIndex = 0;
//
// btnZip
//
this.btnZip.Location = new System.Drawing.Point(147, 129);
this.btnZip.Name = "btnZip";
this.btnZip.Size = new System.Drawing.Size(75, 23);
this.btnZip.TabIndex = 1;
this.btnZip.Text = "压缩";
this.btnZip.UseVisualStyleBackColor = true;
this.btnZip.Click += new System.EventHandler(this.btnZip_Click);
//
// btnUnZip
//
this.btnUnZip.Location = new System.Drawing.Point(326, 129);
this.btnUnZip.Name = "btnUnZip";
this.btnUnZip.Size = new System.Drawing.Size(75, 23);
this.btnUnZip.TabIndex = 2;
this.btnUnZip.Text = "解压";
this.btnUnZip.UseVisualStyleBackColor = true;
//
// tbBytesD
//
this.tbBytesD.Location = new System.Drawing.Point(12, 158);
this.tbBytesD.Multiline = true;
this.tbBytesD.Name = "tbBytesD";
this.tbBytesD.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.tbBytesD.Size = new System.Drawing.Size(521, 104);
this.tbBytesD.TabIndex = 4;
//
// tbBytesS
//
this.tbBytesS.Location = new System.Drawing.Point(12, 39);
this.tbBytesS.Multiline = true;
this.tbBytesS.Name = "tbBytesS";
this.tbBytesS.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.tbBytesS.Size = new System.Drawing.Size(521, 84);
this.tbBytesS.TabIndex = 5;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(545, 274);
this.Controls.Add(this.tbBytesS);
this.Controls.Add(this.tbBytesD);
this.Controls.Add(this.btnUnZip);
this.Controls.Add(this.btnZip);
this.Controls.Add(this.tbStr);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox tbStr;
private System.Windows.Forms.Button btnZip;
private System.Windows.Forms.Button btnUnZip;
private System.Windows.Forms.TextBox tbBytesD;
private System.Windows.Forms.TextBox tbBytesS;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -