namespace ProjectLiner { partial class FormLiner { /// /// 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() { pictureBoxLiner = new PictureBox(); CreateButton = new Button(); buttonRight = new Button(); buttonDown = new Button(); buttonLeft = new Button(); buttonUp = new Button(); ((System.ComponentModel.ISupportInitialize)pictureBoxLiner).BeginInit(); SuspendLayout(); // // pictureBoxLiner // pictureBoxLiner.Dock = DockStyle.Fill; pictureBoxLiner.Location = new Point(0, 0); pictureBoxLiner.Name = "pictureBoxLiner"; pictureBoxLiner.Size = new Size(800, 450); pictureBoxLiner.TabIndex = 5; pictureBoxLiner.TabStop = false; // // CreateButton // CreateButton.Location = new Point(12, 408); CreateButton.Name = "CreateButton"; CreateButton.Size = new Size(90, 30); CreateButton.TabIndex = 0; CreateButton.Text = "Create"; CreateButton.UseVisualStyleBackColor = true; CreateButton.Click += ButtonCreate_Click; // // buttonRight // buttonRight.Font = new Font("Segoe UI", 15F, FontStyle.Regular, GraphicsUnit.Point); buttonRight.Location = new Point(748, 398); buttonRight.Name = "buttonRight"; buttonRight.Size = new Size(40, 40); buttonRight.TabIndex = 1; buttonRight.Text = "⇒"; buttonRight.UseVisualStyleBackColor = true; buttonRight.Click += ButtonMove_Click; // // buttonDown // buttonDown.Font = new Font("Segoe UI", 15F, FontStyle.Regular, GraphicsUnit.Point); buttonDown.Location = new Point(702, 398); buttonDown.Name = "buttonDown"; buttonDown.Size = new Size(40, 40); buttonDown.TabIndex = 2; buttonDown.Text = "⇓"; buttonDown.UseVisualStyleBackColor = true; buttonDown.Click += ButtonMove_Click; // // buttonLeft // buttonLeft.Font = new Font("Segoe UI", 15F, FontStyle.Regular, GraphicsUnit.Point); buttonLeft.Location = new Point(656, 398); buttonLeft.Name = "buttonLeft"; buttonLeft.Size = new Size(40, 40); buttonLeft.TabIndex = 3; buttonLeft.Text = "⇐"; buttonLeft.UseVisualStyleBackColor = true; buttonLeft.Click += ButtonMove_Click; // // buttonUp // buttonUp.Font = new Font("Segoe UI", 15F, FontStyle.Regular, GraphicsUnit.Point); buttonUp.Location = new Point(702, 352); buttonUp.Name = "buttonUp"; buttonUp.Size = new Size(40, 40); buttonUp.TabIndex = 4; buttonUp.Text = "⇑"; buttonUp.UseVisualStyleBackColor = true; buttonUp.Click += ButtonMove_Click; // // FormAntiAircraftGun // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(buttonUp); Controls.Add(buttonLeft); Controls.Add(buttonDown); Controls.Add(buttonRight); Controls.Add(CreateButton); Controls.Add(pictureBoxLiner); Name = "FormLiner"; Text = "Liner"; ((System.ComponentModel.ISupportInitialize)pictureBoxLiner).EndInit(); ResumeLayout(false); } #endregion private PictureBox pictureBoxLiner; private Button CreateButton; private Button buttonRight; private Button buttonDown; private Button buttonLeft; private Button buttonUp; } }