📄 form1.designer.cs
字号:
namespace DeviceApplication3
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.open_a_pic = new System.Windows.Forms.Button();
this.encode = new System.Windows.Forms.Button();
this.decode = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// open_a_pic
//
this.open_a_pic.Location = new System.Drawing.Point(136, 196);
this.open_a_pic.Name = "open_a_pic";
this.open_a_pic.Size = new System.Drawing.Size(72, 20);
this.open_a_pic.TabIndex = 0;
this.open_a_pic.Text = "open a pic";
this.open_a_pic.Click += new System.EventHandler(this.open_a_pic_Click);
//
// encode
//
this.encode.Location = new System.Drawing.Point(3, 235);
this.encode.Name = "encode";
this.encode.Size = new System.Drawing.Size(72, 20);
this.encode.TabIndex = 1;
this.encode.Text = "encode";
this.encode.Click += new System.EventHandler(this.encode_Click);
//
// decode
//
this.decode.Location = new System.Drawing.Point(136, 235);
this.decode.Name = "decode";
this.decode.Size = new System.Drawing.Size(72, 20);
this.decode.TabIndex = 2;
this.decode.Text = "decode";
this.decode.Click += new System.EventHandler(this.decode_Click);
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(32, 19);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(176, 157);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(3, 182);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 21);
this.textBox1.TabIndex = 3;
this.textBox1.Text = " ";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(3, 208);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(100, 21);
this.textBox2.TabIndex = 5;
this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.decode);
this.Controls.Add(this.encode);
this.Controls.Add(this.open_a_pic);
this.Menu = this.mainMenu1;
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button open_a_pic;
private System.Windows.Forms.Button encode;
private System.Windows.Forms.Button decode;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -