241 lines
9.0 KiB
C#
241 lines
9.0 KiB
C#
|
namespace CourseWorkEreda
|
|||
|
{
|
|||
|
partial class FormMain
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
pictureBox1 = new PictureBox();
|
|||
|
buttonPushFront = new Button();
|
|||
|
buttonpushBack = new Button();
|
|||
|
buttonpopFront = new Button();
|
|||
|
buttonpopBack = new Button();
|
|||
|
buttonEmpty = new Button();
|
|||
|
buttonInfo = new Button();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonLoad = new Button();
|
|||
|
lstStackStates = new ListBox();
|
|||
|
buttonStepForward = new Button();
|
|||
|
buttonStepBack = new Button();
|
|||
|
button1 = new Button();
|
|||
|
splitter1 = new Splitter();
|
|||
|
label1 = new Label();
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// pictureBox1
|
|||
|
//
|
|||
|
pictureBox1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|||
|
pictureBox1.BorderStyle = BorderStyle.FixedSingle;
|
|||
|
pictureBox1.Location = new Point(34, 12);
|
|||
|
pictureBox1.Name = "pictureBox1";
|
|||
|
pictureBox1.Size = new Size(742, 544);
|
|||
|
pictureBox1.TabIndex = 0;
|
|||
|
pictureBox1.TabStop = false;
|
|||
|
//
|
|||
|
// buttonPushFront
|
|||
|
//
|
|||
|
buttonPushFront.Location = new Point(799, 41);
|
|||
|
buttonPushFront.Name = "buttonPushFront";
|
|||
|
buttonPushFront.Size = new Size(226, 23);
|
|||
|
buttonPushFront.TabIndex = 2;
|
|||
|
buttonPushFront.Text = "pushFront";
|
|||
|
buttonPushFront.UseVisualStyleBackColor = true;
|
|||
|
buttonPushFront.Click += buttonPushFront_Click;
|
|||
|
//
|
|||
|
// buttonpushBack
|
|||
|
//
|
|||
|
buttonpushBack.Location = new Point(801, 69);
|
|||
|
buttonpushBack.Name = "buttonpushBack";
|
|||
|
buttonpushBack.Size = new Size(226, 23);
|
|||
|
buttonpushBack.TabIndex = 3;
|
|||
|
buttonpushBack.Text = "pushBack";
|
|||
|
buttonpushBack.UseVisualStyleBackColor = true;
|
|||
|
buttonpushBack.Click += buttonpushBack_Click;
|
|||
|
//
|
|||
|
// buttonpopFront
|
|||
|
//
|
|||
|
buttonpopFront.Location = new Point(799, 99);
|
|||
|
buttonpopFront.Name = "buttonpopFront";
|
|||
|
buttonpopFront.Size = new Size(226, 23);
|
|||
|
buttonpopFront.TabIndex = 4;
|
|||
|
buttonpopFront.Text = "popFront";
|
|||
|
buttonpopFront.UseVisualStyleBackColor = true;
|
|||
|
buttonpopFront.Click += buttonpopFront_Click;
|
|||
|
//
|
|||
|
// buttonpopBack
|
|||
|
//
|
|||
|
buttonpopBack.Location = new Point(799, 128);
|
|||
|
buttonpopBack.Name = "buttonpopBack";
|
|||
|
buttonpopBack.Size = new Size(226, 23);
|
|||
|
buttonpopBack.TabIndex = 5;
|
|||
|
buttonpopBack.Text = "popBack";
|
|||
|
buttonpopBack.UseVisualStyleBackColor = true;
|
|||
|
buttonpopBack.Click += buttonpopBack_Click;
|
|||
|
//
|
|||
|
// buttonEmpty
|
|||
|
//
|
|||
|
buttonEmpty.Location = new Point(799, 157);
|
|||
|
buttonEmpty.Name = "buttonEmpty";
|
|||
|
buttonEmpty.Size = new Size(226, 23);
|
|||
|
buttonEmpty.TabIndex = 6;
|
|||
|
buttonEmpty.Text = "Empty";
|
|||
|
buttonEmpty.UseVisualStyleBackColor = true;
|
|||
|
buttonEmpty.Click += buttonEmpty_Click;
|
|||
|
//
|
|||
|
// buttonInfo
|
|||
|
//
|
|||
|
buttonInfo.Location = new Point(799, 186);
|
|||
|
buttonInfo.Name = "buttonInfo";
|
|||
|
buttonInfo.Size = new Size(226, 23);
|
|||
|
buttonInfo.TabIndex = 7;
|
|||
|
buttonInfo.Text = "Информация";
|
|||
|
buttonInfo.UseVisualStyleBackColor = true;
|
|||
|
buttonInfo.Click += buttonInfo_Click;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(799, 215);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(226, 23);
|
|||
|
buttonSave.TabIndex = 8;
|
|||
|
buttonSave.Text = "Сохранение ";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// buttonLoad
|
|||
|
//
|
|||
|
buttonLoad.Location = new Point(799, 244);
|
|||
|
buttonLoad.Name = "buttonLoad";
|
|||
|
buttonLoad.Size = new Size(226, 23);
|
|||
|
buttonLoad.TabIndex = 9;
|
|||
|
buttonLoad.Text = "Загрузка";
|
|||
|
buttonLoad.UseVisualStyleBackColor = true;
|
|||
|
buttonLoad.Click += buttonLoad_Click;
|
|||
|
//
|
|||
|
// lstStackStates
|
|||
|
//
|
|||
|
lstStackStates.FormattingEnabled = true;
|
|||
|
lstStackStates.ItemHeight = 15;
|
|||
|
lstStackStates.Location = new Point(828, 273);
|
|||
|
lstStackStates.Name = "lstStackStates";
|
|||
|
lstStackStates.Size = new Size(176, 139);
|
|||
|
lstStackStates.TabIndex = 10;
|
|||
|
//
|
|||
|
// buttonStepForward
|
|||
|
//
|
|||
|
buttonStepForward.Location = new Point(799, 456);
|
|||
|
buttonStepForward.Name = "buttonStepForward";
|
|||
|
buttonStepForward.Size = new Size(100, 27);
|
|||
|
buttonStepForward.TabIndex = 11;
|
|||
|
buttonStepForward.Text = "Вперед";
|
|||
|
buttonStepForward.UseVisualStyleBackColor = true;
|
|||
|
buttonStepForward.Click += buttonStepForward_Click;
|
|||
|
//
|
|||
|
// buttonStepBack
|
|||
|
//
|
|||
|
buttonStepBack.Location = new Point(925, 456);
|
|||
|
buttonStepBack.Name = "buttonStepBack";
|
|||
|
buttonStepBack.Size = new Size(100, 27);
|
|||
|
buttonStepBack.TabIndex = 12;
|
|||
|
buttonStepBack.Text = "Назад";
|
|||
|
buttonStepBack.UseVisualStyleBackColor = true;
|
|||
|
buttonStepBack.Click += buttonStepBack_Click;
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
button1.Location = new Point(850, 502);
|
|||
|
button1.Name = "button1";
|
|||
|
button1.Size = new Size(125, 23);
|
|||
|
button1.TabIndex = 13;
|
|||
|
button1.Text = "Обновить";
|
|||
|
button1.UseVisualStyleBackColor = true;
|
|||
|
button1.Click += button1_Click;
|
|||
|
//
|
|||
|
// splitter1
|
|||
|
//
|
|||
|
splitter1.Location = new Point(0, 0);
|
|||
|
splitter1.Name = "splitter1";
|
|||
|
splitter1.Size = new Size(3, 577);
|
|||
|
splitter1.TabIndex = 14;
|
|||
|
splitter1.TabStop = false;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(870, 23);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(86, 15);
|
|||
|
label1.TabIndex = 15;
|
|||
|
label1.Text = "Инструменты:";
|
|||
|
//
|
|||
|
// FormMain
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(1070, 577);
|
|||
|
Controls.Add(label1);
|
|||
|
Controls.Add(splitter1);
|
|||
|
Controls.Add(button1);
|
|||
|
Controls.Add(buttonStepBack);
|
|||
|
Controls.Add(buttonStepForward);
|
|||
|
Controls.Add(lstStackStates);
|
|||
|
Controls.Add(buttonLoad);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(buttonInfo);
|
|||
|
Controls.Add(buttonEmpty);
|
|||
|
Controls.Add(buttonpopBack);
|
|||
|
Controls.Add(buttonpopFront);
|
|||
|
Controls.Add(buttonpushBack);
|
|||
|
Controls.Add(buttonPushFront);
|
|||
|
Controls.Add(pictureBox1);
|
|||
|
Name = "FormMain";
|
|||
|
Text = "FormMain";
|
|||
|
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private PictureBox pictureBox1;
|
|||
|
private Button buttonPushFront;
|
|||
|
private Button buttonpushBack;
|
|||
|
private Button buttonpopFront;
|
|||
|
private Button buttonpopBack;
|
|||
|
private Button buttonEmpty;
|
|||
|
private Button buttonInfo;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonLoad;
|
|||
|
private ListBox lstStackStates;
|
|||
|
private Button buttonStepForward;
|
|||
|
private Button buttonStepBack;
|
|||
|
private Button button1;
|
|||
|
private Splitter splitter1;
|
|||
|
private Label label1;
|
|||
|
}
|
|||
|
}
|