You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
4.1 KiB
112 lines
4.1 KiB
1 month ago
|
namespace Base64ConvertTool
|
||
|
{
|
||
|
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.button1 = new System.Windows.Forms.Button();
|
||
|
this.textBoxSrc = new System.Windows.Forms.TextBox();
|
||
|
this.textBoxbase64 = new System.Windows.Forms.TextBox();
|
||
|
this.label1 = new System.Windows.Forms.Label();
|
||
|
this.label2 = new System.Windows.Forms.Label();
|
||
|
this.SuspendLayout();
|
||
|
//
|
||
|
// button1
|
||
|
//
|
||
|
this.button1.Location = new System.Drawing.Point(312, 437);
|
||
|
this.button1.Name = "button1";
|
||
|
this.button1.Size = new System.Drawing.Size(195, 41);
|
||
|
this.button1.TabIndex = 0;
|
||
|
this.button1.Text = "生成base64";
|
||
|
this.button1.UseVisualStyleBackColor = true;
|
||
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
|
//
|
||
|
// textBoxSrc
|
||
|
//
|
||
|
this.textBoxSrc.Location = new System.Drawing.Point(88, 26);
|
||
|
this.textBoxSrc.MaxLength = 1000;
|
||
|
this.textBoxSrc.Multiline = true;
|
||
|
this.textBoxSrc.Name = "textBoxSrc";
|
||
|
this.textBoxSrc.Size = new System.Drawing.Size(704, 173);
|
||
|
this.textBoxSrc.TabIndex = 1;
|
||
|
//
|
||
|
// textBoxbase64
|
||
|
//
|
||
|
this.textBoxbase64.Location = new System.Drawing.Point(88, 205);
|
||
|
this.textBoxbase64.MaxLength = 2000;
|
||
|
this.textBoxbase64.Multiline = true;
|
||
|
this.textBoxbase64.Name = "textBoxbase64";
|
||
|
this.textBoxbase64.Size = new System.Drawing.Size(704, 203);
|
||
|
this.textBoxbase64.TabIndex = 2;
|
||
|
//
|
||
|
// label1
|
||
|
//
|
||
|
this.label1.AutoSize = true;
|
||
|
this.label1.Location = new System.Drawing.Point(16, 99);
|
||
|
this.label1.Name = "label1";
|
||
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
||
|
this.label1.TabIndex = 3;
|
||
|
this.label1.Text = "原始文本";
|
||
|
//
|
||
|
// label2
|
||
|
//
|
||
|
this.label2.AutoSize = true;
|
||
|
this.label2.Location = new System.Drawing.Point(16, 286);
|
||
|
this.label2.Name = "label2";
|
||
|
this.label2.Size = new System.Drawing.Size(65, 12);
|
||
|
this.label2.TabIndex = 4;
|
||
|
this.label2.Text = "base64编码";
|
||
|
//
|
||
|
// Form1
|
||
|
//
|
||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
|
this.ClientSize = new System.Drawing.Size(857, 521);
|
||
|
this.Controls.Add(this.label2);
|
||
|
this.Controls.Add(this.label1);
|
||
|
this.Controls.Add(this.textBoxbase64);
|
||
|
this.Controls.Add(this.textBoxSrc);
|
||
|
this.Controls.Add(this.button1);
|
||
|
this.MaximizeBox = false;
|
||
|
this.Name = "Form1";
|
||
|
this.Text = "Base64编码工具";
|
||
|
this.ResumeLayout(false);
|
||
|
this.PerformLayout();
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
private System.Windows.Forms.Button button1;
|
||
|
private System.Windows.Forms.TextBox textBoxSrc;
|
||
|
private System.Windows.Forms.TextBox textBoxbase64;
|
||
|
private System.Windows.Forms.Label label1;
|
||
|
private System.Windows.Forms.Label label2;
|
||
|
}
|
||
|
}
|
||
|
|