namespace Сжатие_RLE
{
partial class Form1
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.btnPack = new System.Windows.Forms.Button();
this.btnUnPack = new System.Windows.Forms.Button();
this.openFile = new System.Windows.Forms.OpenFileDialog();
this.lblGenerate = new System.Windows.Forms.Label();
this.btnGenerate = new System.Windows.Forms.Button();
this.lblPack = new System.Windows.Forms.Label();
this.lblPosition = new System.Windows.Forms.Label();
this.lblCounter = new System.Windows.Forms.Label();
this.lblBuf = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnPack
//
this.btnPack.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.btnPack.Location = new System.Drawing.Point(31, 129);
this.btnPack.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnPack.Name = "btnPack";
this.btnPack.Size = new System.Drawing.Size(119, 35);
this.btnPack.TabIndex = 0;
this.btnPack.Text = "Упаковка";
this.btnPack.UseVisualStyleBackColor = true;
this.btnPack.Click += new System.EventHandler(this.btnPack_Click);
//
// btnUnPack
//
this.btnUnPack.Location = new System.Drawing.Point(29, 202);
this.btnUnPack.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnUnPack.Name = "btnUnPack";
this.btnUnPack.Size = new System.Drawing.Size(121, 19);
this.btnUnPack.TabIndex = 1;
this.btnUnPack.Text = "Распаковка";
this.btnUnPack.UseVisualStyleBackColor = true;
this.btnUnPack.Click += new System.EventHandler(this.btnUnPack_Click);
//
// lblGenerate
//
this.lblGenerate.AutoSize = true;
this.lblGenerate.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblGenerate.Location = new System.Drawing.Point(33, 14);
this.lblGenerate.Name = "lblGenerate";
this.lblGenerate.Size = new System.Drawing.Size(107, 24);
this.lblGenerate.TabIndex = 2;
this.lblGenerate.Text = "Генерация";
//
// btnGenerate
//
this.btnGenerate.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.btnGenerate.Location = new System.Drawing.Point(29, 44);
this.btnGenerate.Name = "btnGenerate";
this.btnGenerate.Size = new System.Drawing.Size(121, 33);
this.btnGenerate.TabIndex = 3;
this.btnGenerate.Text = "Генерация";
this.btnGenerate.UseVisualStyleBackColor = true;
this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
//
// lblPack
//
this.lblPack.AutoSize = true;
this.lblPack.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblPack.Location = new System.Drawing.Point(34, 99);
this.lblPack.Name = "lblPack";
this.lblPack.Size = new System.Drawing.Size(106, 24);
this.lblPack.TabIndex = 4;
this.lblPack.Text = "Упаковано";
//
// lblPosition
//
this.lblPosition.AutoSize = true;
this.lblPosition.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblPosition.Location = new System.Drawing.Point(678, 13);
this.lblPosition.Name = "lblPosition";
this.lblPosition.Size = new System.Drawing.Size(92, 24);
this.lblPosition.TabIndex = 5;
this.lblPosition.Text = "Позиция:";
//
// lblCounter
//
this.lblCounter.AutoSize = true;
this.lblCounter.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblCounter.Location = new System.Drawing.Point(678, 129);
this.lblCounter.Name = "lblCounter";
this.lblCounter.Size = new System.Drawing.Size(89, 24);
this.lblCounter.TabIndex = 6;
this.lblCounter.Text = "Счетчик:";
//
// lblBuf
//
this.lblBuf.AutoSize = true;
this.lblBuf.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblBuf.Location = new System.Drawing.Point(678, 71);
this.lblBuf.Name = "lblBuf";
this.lblBuf.Size = new System.Drawing.Size(73, 24);
this.lblBuf.TabIndex = 7;
this.lblBuf.Text = "Буфер:";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(857, 315);
this.Controls.Add(this.lblBuf);
this.Controls.Add(this.lblCounter);
this.Controls.Add(this.lblPosition);
this.Controls.Add(this.lblPack);
this.Controls.Add(this.btnGenerate);
this.Controls.Add(this.lblGenerate);
this.Controls.Add(this.btnUnPack);
this.Controls.Add(this.btnPack);
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Name = "Form1";
this.Text = "Сжатие RLE";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnPack;
private System.Windows.Forms.Button btnUnPack;
private System.Windows.Forms.OpenFileDialog openFile;
private System.Windows.Forms.Label lblGenerate;
private System.Windows.Forms.Button btnGenerate;
private System.Windows.Forms.Label lblPack;
private System.Windows.Forms.Label lblPosition;
private System.Windows.Forms.Label lblCounter;
private System.Windows.Forms.Label lblBuf;
}
}