147 lines
6.0 KiB
C#
147 lines
6.0 KiB
C#
namespace ProjectDumpTruck
|
||
{
|
||
partial class FormDumpTruck
|
||
{
|
||
/// <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()
|
||
{
|
||
buttonLeft = new Button();
|
||
buttonRight = new Button();
|
||
buttonUp = new Button();
|
||
buttonDown = new Button();
|
||
comboBoxStrategy = new ComboBox();
|
||
buttonStrategyStep = new Button();
|
||
pictureBoxDumpTruck = new PictureBox();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxDumpTruck).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// buttonLeft
|
||
//
|
||
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonLeft.BackgroundImage = Properties.Resources.влево;
|
||
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
|
||
buttonLeft.Location = new Point(850, 469);
|
||
buttonLeft.Name = "buttonLeft";
|
||
buttonLeft.Size = new Size(40, 40);
|
||
buttonLeft.TabIndex = 2;
|
||
buttonLeft.UseVisualStyleBackColor = true;
|
||
buttonLeft.Click += ButtonMove_Click;
|
||
//
|
||
// buttonRight
|
||
//
|
||
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonRight.BackgroundImage = Properties.Resources.вправо;
|
||
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
|
||
buttonRight.Location = new Point(942, 469);
|
||
buttonRight.Name = "buttonRight";
|
||
buttonRight.Size = new Size(40, 40);
|
||
buttonRight.TabIndex = 3;
|
||
buttonRight.UseVisualStyleBackColor = true;
|
||
buttonRight.Click += ButtonMove_Click;
|
||
//
|
||
// buttonUp
|
||
//
|
||
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonUp.BackgroundImage = Properties.Resources.вверх;
|
||
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
|
||
buttonUp.Location = new Point(896, 423);
|
||
buttonUp.Name = "buttonUp";
|
||
buttonUp.Size = new Size(40, 40);
|
||
buttonUp.TabIndex = 4;
|
||
buttonUp.UseVisualStyleBackColor = true;
|
||
buttonUp.Click += ButtonMove_Click;
|
||
//
|
||
// buttonDown
|
||
//
|
||
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
buttonDown.BackgroundImage = Properties.Resources.вниз;
|
||
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
|
||
buttonDown.Location = new Point(896, 469);
|
||
buttonDown.Name = "buttonDown";
|
||
buttonDown.Size = new Size(40, 40);
|
||
buttonDown.TabIndex = 5;
|
||
buttonDown.UseVisualStyleBackColor = true;
|
||
buttonDown.Click += ButtonMove_Click;
|
||
//
|
||
// comboBoxStrategy
|
||
//
|
||
comboBoxStrategy.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
||
comboBoxStrategy.DropDownStyle = ComboBoxStyle.DropDownList;
|
||
comboBoxStrategy.FormattingEnabled = true;
|
||
comboBoxStrategy.Items.AddRange(new object[] { "К центру", "К краю" });
|
||
comboBoxStrategy.Location = new Point(831, 21);
|
||
comboBoxStrategy.Name = "comboBoxStrategy";
|
||
comboBoxStrategy.Size = new Size(151, 28);
|
||
comboBoxStrategy.TabIndex = 7;
|
||
//
|
||
// buttonStrategyStep
|
||
//
|
||
buttonStrategyStep.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
||
buttonStrategyStep.Location = new Point(890, 55);
|
||
buttonStrategyStep.Name = "buttonStrategyStep";
|
||
buttonStrategyStep.Size = new Size(94, 29);
|
||
buttonStrategyStep.TabIndex = 9;
|
||
buttonStrategyStep.Text = "Шаг";
|
||
buttonStrategyStep.UseVisualStyleBackColor = true;
|
||
buttonStrategyStep.Click += ButtonStrategyStep_Click;
|
||
//
|
||
// pictureBoxDumpTruck
|
||
//
|
||
pictureBoxDumpTruck.Dock = DockStyle.Fill;
|
||
pictureBoxDumpTruck.Location = new Point(0, 0);
|
||
pictureBoxDumpTruck.Name = "pictureBoxDumpTruck";
|
||
pictureBoxDumpTruck.Size = new Size(1004, 527);
|
||
pictureBoxDumpTruck.TabIndex = 10;
|
||
pictureBoxDumpTruck.TabStop = false;
|
||
//
|
||
// FormDumpTruck
|
||
//
|
||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(1004, 527);
|
||
Controls.Add(buttonStrategyStep);
|
||
Controls.Add(comboBoxStrategy);
|
||
Controls.Add(buttonDown);
|
||
Controls.Add(buttonUp);
|
||
Controls.Add(buttonRight);
|
||
Controls.Add(buttonLeft);
|
||
Controls.Add(pictureBoxDumpTruck);
|
||
Name = "FormDumpTruck";
|
||
Text = "Самосвал";
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxDumpTruck).EndInit();
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
private Button buttonLeft;
|
||
private Button buttonRight;
|
||
private Button buttonUp;
|
||
private Button buttonDown;
|
||
private ComboBox comboBoxStrategy;
|
||
private Button buttonStrategyStep;
|
||
private PictureBox pictureBoxDumpTruck;
|
||
}
|
||
} |