120 lines
4.6 KiB
C#
120 lines
4.6 KiB
C#
|
namespace z01_WinAPP
|
|||
|
{
|
|||
|
partial class fmDecrypt
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Clean up any resources being used.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Required method for Designer support - do not modify
|
|||
|
/// the contents of this method with the code editor.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.tbBefore = new System.Windows.Forms.TextBox();
|
|||
|
this.tbAfter = new System.Windows.Forms.TextBox();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.button2 = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.Location = new System.Drawing.Point(155, 128);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(94, 29);
|
|||
|
this.button1.TabIndex = 0;
|
|||
|
this.button1.Text = "加密";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
//
|
|||
|
// tbBefore
|
|||
|
//
|
|||
|
this.tbBefore.Location = new System.Drawing.Point(153, 60);
|
|||
|
this.tbBefore.Name = "tbBefore";
|
|||
|
this.tbBefore.Size = new System.Drawing.Size(782, 27);
|
|||
|
this.tbBefore.TabIndex = 1;
|
|||
|
//
|
|||
|
// tbAfter
|
|||
|
//
|
|||
|
this.tbAfter.Location = new System.Drawing.Point(153, 198);
|
|||
|
this.tbAfter.Name = "tbAfter";
|
|||
|
this.tbAfter.Size = new System.Drawing.Size(782, 27);
|
|||
|
this.tbAfter.TabIndex = 2;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(27, 63);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(120, 19);
|
|||
|
this.label1.TabIndex = 3;
|
|||
|
this.label1.Text = "要加/解密的字串";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(27, 201);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(90, 19);
|
|||
|
this.label2.TabIndex = 4;
|
|||
|
this.label2.Text = "加/解密結果";
|
|||
|
//
|
|||
|
// button2
|
|||
|
//
|
|||
|
this.button2.Location = new System.Drawing.Point(518, 128);
|
|||
|
this.button2.Name = "button2";
|
|||
|
this.button2.Size = new System.Drawing.Size(94, 29);
|
|||
|
this.button2.TabIndex = 5;
|
|||
|
this.button2.Text = "解密";
|
|||
|
this.button2.UseVisualStyleBackColor = true;
|
|||
|
this.button2.Click += new System.EventHandler(this.button2_Click);
|
|||
|
//
|
|||
|
// fmDecrypt
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.BackColor = System.Drawing.Color.LightSteelBlue;
|
|||
|
this.ClientSize = new System.Drawing.Size(1048, 450);
|
|||
|
this.Controls.Add(this.button2);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Controls.Add(this.tbAfter);
|
|||
|
this.Controls.Add(this.tbBefore);
|
|||
|
this.Controls.Add(this.button1);
|
|||
|
this.Name = "fmDecrypt";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Text = "fmDecrypt";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button button1;
|
|||
|
private System.Windows.Forms.TextBox tbBefore;
|
|||
|
private System.Windows.Forms.TextBox tbAfter;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.Button button2;
|
|||
|
}
|
|||
|
}
|