namespace ProjectStormtrooper; partial class FormStormtrooper { /// /// 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() { pictureBoxStormtrooper = new PictureBox(); buttonCreate = new Button(); buttonRight = new Button(); buttonUp = new Button(); buttonLeft = new Button(); buttonDown = new Button(); ((System.ComponentModel.ISupportInitialize)pictureBoxStormtrooper).BeginInit(); SuspendLayout(); // // pictureBoxStormtrooper // pictureBoxStormtrooper.Dock = DockStyle.Fill; pictureBoxStormtrooper.Location = new Point(0, 0); pictureBoxStormtrooper.Name = "pictureBoxStormtrooper"; pictureBoxStormtrooper.Size = new Size(1228, 518); pictureBoxStormtrooper.SizeMode = PictureBoxSizeMode.AutoSize; pictureBoxStormtrooper.TabIndex = 0; pictureBoxStormtrooper.TabStop = false; // // buttonCreate // buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; buttonCreate.Location = new Point(12, 477); buttonCreate.Name = "buttonCreate"; buttonCreate.Size = new Size(94, 29); buttonCreate.TabIndex = 1; buttonCreate.Text = "создать"; buttonCreate.UseVisualStyleBackColor = true; buttonCreate.Click += ButtonCreateStormtrooper_Click; // // buttonRight // buttonRight.BackgroundImage = Properties.Resources.arrowRight; buttonRight.BackgroundImageLayout = ImageLayout.Stretch; buttonRight.Location = new Point(1163, 466); buttonRight.Name = "buttonRight"; buttonRight.Size = new Size(40, 40); buttonRight.TabIndex = 2; buttonRight.UseVisualStyleBackColor = true; buttonRight.Click += ButtonMove_Click; // // buttonUp // buttonUp.BackgroundImage = Properties.Resources.arrowUp; buttonUp.BackgroundImageLayout = ImageLayout.Stretch; buttonUp.Location = new Point(1117, 420); buttonUp.Name = "buttonUp"; buttonUp.Size = new Size(40, 40); buttonUp.TabIndex = 3; buttonUp.UseVisualStyleBackColor = true; buttonUp.Click += ButtonMove_Click; // // buttonLeft // buttonLeft.BackgroundImage = Properties.Resources.arrowLeft; buttonLeft.BackgroundImageLayout = ImageLayout.Stretch; buttonLeft.Location = new Point(1071, 466); buttonLeft.Name = "buttonLeft"; buttonLeft.Size = new Size(40, 40); buttonLeft.TabIndex = 4; buttonLeft.UseVisualStyleBackColor = true; buttonLeft.Click += ButtonMove_Click; // // buttonDown // buttonDown.BackgroundImage = Properties.Resources.arrowDown; buttonDown.BackgroundImageLayout = ImageLayout.Stretch; buttonDown.Location = new Point(1117, 466); buttonDown.Name = "buttonDown"; buttonDown.Size = new Size(40, 40); buttonDown.TabIndex = 5; buttonDown.UseVisualStyleBackColor = true; buttonDown.Click += ButtonMove_Click; // // FormStormtrooper // ClientSize = new Size(1228, 518); Controls.Add(buttonDown); Controls.Add(buttonLeft); Controls.Add(buttonUp); Controls.Add(buttonRight); Controls.Add(buttonCreate); Controls.Add(pictureBoxStormtrooper); Name = "FormStormtrooper"; ((System.ComponentModel.ISupportInitialize)pictureBoxStormtrooper).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private PictureBox pictureBoxStormtrooper; private Button buttonCreate; private Button buttonRight; private Button buttonUp; private Button buttonLeft; private Button buttonDown; }