namespace Cruiser { partial class FormCruiser { /// /// 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() { pictureBoxCruiser = new PictureBox(); buttonCreate = new Button(); buttonRight = new Button(); buttonDown = new Button(); buttonLeft = new Button(); buttonUp = new Button(); ((System.ComponentModel.ISupportInitialize)pictureBoxCruiser).BeginInit(); SuspendLayout(); // // pictureBoxCruiser // pictureBoxCruiser.Dock = DockStyle.Fill; pictureBoxCruiser.Location = new Point(0, 0); pictureBoxCruiser.Name = "pictureBoxCruiser"; pictureBoxCruiser.Size = new Size(800, 450); pictureBoxCruiser.TabIndex = 0; pictureBoxCruiser.TabStop = false; // // buttonCreate // buttonCreate.Location = new Point(12, 402); buttonCreate.Name = "buttonCreate"; buttonCreate.Size = new Size(125, 36); buttonCreate.TabIndex = 1; buttonCreate.Text = "Создать"; buttonCreate.UseVisualStyleBackColor = true; buttonCreate.Click += buttonCreate_Click; // // buttonRight // buttonRight.BackgroundImage = Properties.Resources.Right; buttonRight.BackgroundImageLayout = ImageLayout.Zoom; buttonRight.Location = new Point(758, 408); buttonRight.Name = "buttonRight"; buttonRight.Size = new Size(30, 30); buttonRight.TabIndex = 2; buttonRight.UseVisualStyleBackColor = true; buttonRight.Click += ButtonMove_Click; // // buttonDown // buttonDown.BackgroundImage = Properties.Resources.Down; buttonDown.BackgroundImageLayout = ImageLayout.Zoom; buttonDown.Location = new Point(722, 408); buttonDown.Name = "buttonDown"; buttonDown.Size = new Size(30, 30); buttonDown.TabIndex = 3; buttonDown.UseVisualStyleBackColor = true; buttonDown.Click += ButtonMove_Click; // // buttonLeft // buttonLeft.BackgroundImage = Properties.Resources.Left; buttonLeft.BackgroundImageLayout = ImageLayout.Zoom; buttonLeft.Location = new Point(686, 408); buttonLeft.Name = "buttonLeft"; buttonLeft.Size = new Size(30, 30); buttonLeft.TabIndex = 4; buttonLeft.UseVisualStyleBackColor = true; buttonLeft.Click += ButtonMove_Click; // // buttonUp // buttonUp.BackgroundImage = Properties.Resources.Up; buttonUp.BackgroundImageLayout = ImageLayout.Zoom; buttonUp.Location = new Point(722, 372); buttonUp.Name = "buttonUp"; buttonUp.Size = new Size(30, 30); buttonUp.TabIndex = 5; buttonUp.UseVisualStyleBackColor = true; buttonUp.Click += ButtonMove_Click; // // FormCruiser // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(buttonUp); Controls.Add(buttonLeft); Controls.Add(buttonDown); Controls.Add(buttonRight); Controls.Add(buttonCreate); Controls.Add(pictureBoxCruiser); Name = "FormCruiser"; Text = "Cruiser"; ((System.ComponentModel.ISupportInitialize)pictureBoxCruiser).EndInit(); ResumeLayout(false); } #endregion private PictureBox pictureBoxCruiser; private Button buttonCreate; private Button buttonRight; private Button buttonDown; private Button buttonLeft; private Button buttonUp; } }