Files
SharpPngDecode/TEST_DecodePng/Form1.Designer.cs
2022-09-01 13:21:04 +02:00

165 lines
6.8 KiB
C#

namespace TEST_DecodePng
{
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.pbxPng = new System.Windows.Forms.PictureBox();
this.pbxRaw = new System.Windows.Forms.Label();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.lsbFiles = new System.Windows.Forms.ListBox();
this.btnDecode = new System.Windows.Forms.Button();
this.lblSizePng = new System.Windows.Forms.Label();
this.lblSizeRaw = new System.Windows.Forms.Label();
this.btnBrowse = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pbxPng)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.SuspendLayout();
//
// pbxPng
//
this.pbxPng.Location = new System.Drawing.Point(12, 30);
this.pbxPng.Name = "pbxPng";
this.pbxPng.Size = new System.Drawing.Size(256, 256);
this.pbxPng.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pbxPng.TabIndex = 0;
this.pbxPng.TabStop = false;
//
// pbxRaw
//
this.pbxRaw.AutoSize = true;
this.pbxRaw.Location = new System.Drawing.Point(281, 11);
this.pbxRaw.Name = "pbxRaw";
this.pbxRaw.Size = new System.Drawing.Size(34, 16);
this.pbxRaw.TabIndex = 1;
this.pbxRaw.Text = "Raw";
//
// pictureBox2
//
this.pictureBox2.Location = new System.Drawing.Point(284, 30);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(256, 256);
this.pictureBox2.TabIndex = 0;
this.pictureBox2.TabStop = false;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 11);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(36, 16);
this.label2.TabIndex = 1;
this.label2.Text = "PNG";
//
// lsbFiles
//
this.lsbFiles.FormattingEnabled = true;
this.lsbFiles.ItemHeight = 16;
this.lsbFiles.Location = new System.Drawing.Point(12, 292);
this.lsbFiles.Name = "lsbFiles";
this.lsbFiles.Size = new System.Drawing.Size(489, 100);
this.lsbFiles.TabIndex = 2;
this.lsbFiles.SelectedIndexChanged += new System.EventHandler(this.lsbFiles_SelectedIndexChanged);
//
// btnDecode
//
this.btnDecode.Location = new System.Drawing.Point(12, 398);
this.btnDecode.Name = "btnDecode";
this.btnDecode.Size = new System.Drawing.Size(529, 49);
this.btnDecode.TabIndex = 3;
this.btnDecode.Text = "Decode";
this.btnDecode.UseVisualStyleBackColor = true;
this.btnDecode.Click += new System.EventHandler(this.btnDecode_Click);
//
// lblSizePng
//
this.lblSizePng.AutoSize = true;
this.lblSizePng.Location = new System.Drawing.Point(201, 11);
this.lblSizePng.Name = "lblSizePng";
this.lblSizePng.Size = new System.Drawing.Size(67, 16);
this.lblSizePng.TabIndex = 4;
this.lblSizePng.Text = "Size: NaN";
//
// lblSizeRaw
//
this.lblSizeRaw.AutoSize = true;
this.lblSizeRaw.Location = new System.Drawing.Point(473, 9);
this.lblSizeRaw.Name = "lblSizeRaw";
this.lblSizeRaw.Size = new System.Drawing.Size(67, 16);
this.lblSizeRaw.TabIndex = 5;
this.lblSizeRaw.Text = "Size: NaN";
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(507, 292);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(33, 99);
this.btnBrowse.TabIndex = 6;
this.btnBrowse.Text = "+";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(553, 450);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.lblSizeRaw);
this.Controls.Add(this.lblSizePng);
this.Controls.Add(this.btnDecode);
this.Controls.Add(this.lsbFiles);
this.Controls.Add(this.label2);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.pbxRaw);
this.Controls.Add(this.pbxPng);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.pbxPng)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pbxPng;
private System.Windows.Forms.Label pbxRaw;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ListBox lsbFiles;
private System.Windows.Forms.Button btnDecode;
private System.Windows.Forms.Label lblSizePng;
private System.Windows.Forms.Label lblSizeRaw;
private System.Windows.Forms.Button btnBrowse;
}
}