180 lines
7.7 KiB
C#
180 lines
7.7 KiB
C#
namespace ProjectBulldozer
|
||
{
|
||
partial class FormBulldozer
|
||
{
|
||
/// <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()
|
||
{
|
||
pictureBoxBulldozer = new PictureBox();
|
||
ButtonCreateBulldozer = new Button();
|
||
buttonRight = new Button();
|
||
buttonUp = new Button();
|
||
buttonLeft = new Button();
|
||
buttonDown = new Button();
|
||
ButtonCreateDozer = new Button();
|
||
comboBoxStrategy = new ComboBox();
|
||
buttonStrategyStep = new Button();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxBulldozer).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// pictureBoxBulldozer
|
||
//
|
||
pictureBoxBulldozer.Dock = DockStyle.Fill;
|
||
pictureBoxBulldozer.Location = new Point(0, 0);
|
||
pictureBoxBulldozer.Name = "pictureBoxBulldozer";
|
||
pictureBoxBulldozer.Size = new Size(874, 429);
|
||
pictureBoxBulldozer.SizeMode = PictureBoxSizeMode.AutoSize;
|
||
pictureBoxBulldozer.TabIndex = 0;
|
||
pictureBoxBulldozer.TabStop = false;
|
||
//
|
||
// ButtonCreateBulldozer
|
||
//
|
||
ButtonCreateBulldozer.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||
ButtonCreateBulldozer.Font = new Font("Comic Sans MS", 9F, FontStyle.Regular, GraphicsUnit.Point);
|
||
ButtonCreateBulldozer.Location = new Point(12, 371);
|
||
ButtonCreateBulldozer.Name = "ButtonCreateBulldozer";
|
||
ButtonCreateBulldozer.Size = new Size(325, 46);
|
||
ButtonCreateBulldozer.TabIndex = 1;
|
||
ButtonCreateBulldozer.Text = "Создать крутой бульдозер";
|
||
ButtonCreateBulldozer.UseVisualStyleBackColor = true;
|
||
ButtonCreateBulldozer.Click += ButtonCreateBulldozer_Click;
|
||
//
|
||
// buttonRight
|
||
//
|
||
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonRight.BackgroundImage = Properties.Resources.ArrowR;
|
||
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
||
buttonRight.Location = new Point(832, 387);
|
||
buttonRight.Name = "buttonRight";
|
||
buttonRight.Size = new Size(30, 30);
|
||
buttonRight.TabIndex = 2;
|
||
buttonRight.UseVisualStyleBackColor = true;
|
||
buttonRight.Click += ButtonMove_Click;
|
||
//
|
||
// buttonUp
|
||
//
|
||
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonUp.BackgroundImage = Properties.Resources.ArrowU;
|
||
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
||
buttonUp.Location = new Point(796, 351);
|
||
buttonUp.Name = "buttonUp";
|
||
buttonUp.Size = new Size(30, 30);
|
||
buttonUp.TabIndex = 3;
|
||
buttonUp.UseVisualStyleBackColor = true;
|
||
buttonUp.Click += ButtonMove_Click;
|
||
//
|
||
// buttonLeft
|
||
//
|
||
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonLeft.BackgroundImage = Properties.Resources.ArrowL;
|
||
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
||
buttonLeft.Location = new Point(760, 387);
|
||
buttonLeft.Name = "buttonLeft";
|
||
buttonLeft.Size = new Size(30, 30);
|
||
buttonLeft.TabIndex = 4;
|
||
buttonLeft.UseVisualStyleBackColor = true;
|
||
buttonLeft.Click += ButtonMove_Click;
|
||
//
|
||
// buttonDown
|
||
//
|
||
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonDown.BackgroundImage = Properties.Resources.ArrowD;
|
||
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
||
buttonDown.Location = new Point(796, 387);
|
||
buttonDown.Name = "buttonDown";
|
||
buttonDown.Size = new Size(30, 30);
|
||
buttonDown.TabIndex = 5;
|
||
buttonDown.UseVisualStyleBackColor = true;
|
||
buttonDown.Click += ButtonMove_Click;
|
||
//
|
||
// ButtonCreateDozer
|
||
//
|
||
ButtonCreateDozer.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||
ButtonCreateDozer.Font = new Font("Comic Sans MS", 9F, FontStyle.Regular, GraphicsUnit.Point);
|
||
ButtonCreateDozer.Location = new Point(343, 371);
|
||
ButtonCreateDozer.Name = "ButtonCreateDozer";
|
||
ButtonCreateDozer.Size = new Size(248, 46);
|
||
ButtonCreateDozer.TabIndex = 6;
|
||
ButtonCreateDozer.Text = "Создать бульдозер";
|
||
ButtonCreateDozer.UseVisualStyleBackColor = true;
|
||
ButtonCreateDozer.Click += ButtonCreateDozer_Click;
|
||
//
|
||
// comboBoxStrategy
|
||
//
|
||
comboBoxStrategy.DropDownStyle = ComboBoxStyle.DropDownList;
|
||
comboBoxStrategy.FormattingEnabled = true;
|
||
comboBoxStrategy.Items.AddRange(new object[] { "К центру", "К краю" });
|
||
comboBoxStrategy.Location = new Point(620, 12);
|
||
comboBoxStrategy.Name = "comboBoxStrategy";
|
||
comboBoxStrategy.Size = new Size(242, 40);
|
||
comboBoxStrategy.TabIndex = 7;
|
||
//
|
||
// buttonStrategyStep
|
||
//
|
||
buttonStrategyStep.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||
buttonStrategyStep.Font = new Font("Comic Sans MS", 9F, FontStyle.Regular, GraphicsUnit.Point);
|
||
buttonStrategyStep.Location = new Point(760, 58);
|
||
buttonStrategyStep.Name = "buttonStrategyStep";
|
||
buttonStrategyStep.Size = new Size(102, 38);
|
||
buttonStrategyStep.TabIndex = 8;
|
||
buttonStrategyStep.Text = "Шаг";
|
||
buttonStrategyStep.UseVisualStyleBackColor = true;
|
||
buttonStrategyStep.Click += ButtonStrategyStep_Click;
|
||
//
|
||
// FormBulldozer
|
||
//
|
||
AutoScaleDimensions = new SizeF(13F, 32F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(874, 429);
|
||
Controls.Add(buttonStrategyStep);
|
||
Controls.Add(comboBoxStrategy);
|
||
Controls.Add(ButtonCreateDozer);
|
||
Controls.Add(buttonDown);
|
||
Controls.Add(buttonLeft);
|
||
Controls.Add(buttonUp);
|
||
Controls.Add(buttonRight);
|
||
Controls.Add(ButtonCreateBulldozer);
|
||
Controls.Add(pictureBoxBulldozer);
|
||
Name = "FormBulldozer";
|
||
Text = "FormBulldozer";
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxBulldozer).EndInit();
|
||
ResumeLayout(false);
|
||
PerformLayout();
|
||
}
|
||
|
||
#endregion
|
||
|
||
private PictureBox pictureBoxBulldozer;
|
||
private Button ButtonCreateBulldozer;
|
||
private Button buttonRight;
|
||
private Button buttonUp;
|
||
private Button buttonLeft;
|
||
private Button buttonDown;
|
||
private Button ButtonCreateDozer;
|
||
private ComboBox comboBoxStrategy;
|
||
private Button buttonStrategyStep;
|
||
}
|
||
} |