namespace ArrayForms
{
partial class MainForm
{
///
/// 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.lblBefore = new System.Windows.Forms.Label();
this.lbBefore = new System.Windows.Forms.ListBox();
this.lbAfter = new System.Windows.Forms.ListBox();
this.lblAfter = new System.Windows.Forms.Label();
this.btnFill = new System.Windows.Forms.Button();
this.btnMove = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblBefore
//
this.lblBefore.AutoSize = true;
this.lblBefore.Location = new System.Drawing.Point(13, 13);
this.lblBefore.Name = "lblBefore";
this.lblBefore.Size = new System.Drawing.Size(110, 15);
this.lblBefore.TabIndex = 0;
this.lblBefore.Text = "Исходный массив:";
//
// lbBefore
//
this.lbBefore.FormattingEnabled = true;
this.lbBefore.ItemHeight = 15;
this.lbBefore.Location = new System.Drawing.Point(13, 32);
this.lbBefore.Name = "lbBefore";
this.lbBefore.Size = new System.Drawing.Size(203, 469);
this.lbBefore.TabIndex = 1;
//
// lbAfter
//
this.lbAfter.FormattingEnabled = true;
this.lbAfter.ItemHeight = 15;
this.lbAfter.Location = new System.Drawing.Point(249, 32);
this.lbAfter.Name = "lbAfter";
this.lbAfter.Size = new System.Drawing.Size(203, 469);
this.lbAfter.TabIndex = 2;
//
// lblAfter
//
this.lblAfter.AutoSize = true;
this.lblAfter.Location = new System.Drawing.Point(249, 13);
this.lblAfter.Name = "lblAfter";
this.lblAfter.Size = new System.Drawing.Size(125, 15);
this.lblAfter.TabIndex = 3;
this.lblAfter.Text = "Полученный массив:";
//
// btnFill
//
this.btnFill.Location = new System.Drawing.Point(13, 508);
this.btnFill.Name = "btnFill";
this.btnFill.Size = new System.Drawing.Size(203, 33);
this.btnFill.TabIndex = 4;
this.btnFill.Text = "Заполнить";
this.btnFill.UseVisualStyleBackColor = true;
this.btnFill.Click += new System.EventHandler(this.btnFill_Click);
//
// btnMove
//
this.btnMove.Location = new System.Drawing.Point(249, 511);
this.btnMove.Name = "btnMove";
this.btnMove.Size = new System.Drawing.Size(203, 33);
this.btnMove.TabIndex = 5;
this.btnMove.Text = "Перестановка";
this.btnMove.UseVisualStyleBackColor = true;
this.btnMove.Click += new System.EventHandler(this.btnMove_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(464, 556);
this.Controls.Add(this.btnMove);
this.Controls.Add(this.btnFill);
this.Controls.Add(this.lblAfter);
this.Controls.Add(this.lbAfter);
this.Controls.Add(this.lbBefore);
this.Controls.Add(this.lblBefore);
this.Name = "MainForm";
this.Text = "Одномерные массивы";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblBefore;
private System.Windows.Forms.ListBox lbBefore;
private System.Windows.Forms.ListBox lbAfter;
private System.Windows.Forms.Label lblAfter;
private System.Windows.Forms.Button btnFill;
private System.Windows.Forms.Button btnMove;
}
}