Files
CopyAndEncodeImage/Form1.Designer.cs

100 lines
4.1 KiB
C#

namespace CopyAndEncodeImage {
partial class Form1 {
/// <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.btnChoose = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.btnEncode = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnChoose
//
this.btnChoose.Location = new System.Drawing.Point(381, 10);
this.btnChoose.Name = "btnChoose";
this.btnChoose.Size = new System.Drawing.Size(64, 21);
this.btnChoose.TabIndex = 0;
this.btnChoose.Text = "Choose";
this.btnChoose.UseVisualStyleBackColor = true;
this.btnChoose.Click += new System.EventHandler(this.btnChoose_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Image File:";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(84, 10);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(291, 21);
this.textBox1.TabIndex = 2;
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// btnEncode
//
this.btnEncode.Enabled = false;
this.btnEncode.Location = new System.Drawing.Point(108, 59);
this.btnEncode.Name = "btnEncode";
this.btnEncode.Size = new System.Drawing.Size(256, 66);
this.btnEncode.TabIndex = 3;
this.btnEncode.Text = "Encode Base64 && Copy to Clipboard";
this.btnEncode.UseVisualStyleBackColor = true;
this.btnEncode.Click += new System.EventHandler(this.btnEncode_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(473, 160);
this.Controls.Add(this.btnEncode);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnChoose);
this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Encode Image to Base64";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnChoose;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button btnEncode;
}
}