200 lines
9.6 KiB
C#
200 lines
9.6 KiB
C#
|
||
namespace PIbd_21_Potapov_N.S._Catamaran_Base
|
||
{
|
||
partial class FormBoat
|
||
{
|
||
/// <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()
|
||
{
|
||
this.btn_new = new System.Windows.Forms.Button();
|
||
this.statusStrip = new System.Windows.Forms.StatusStrip();
|
||
this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel();
|
||
this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel();
|
||
this.toolStripStatusLabelColor = new System.Windows.Forms.ToolStripStatusLabel();
|
||
this.groupBox = new System.Windows.Forms.GroupBox();
|
||
this.btn_up = new System.Windows.Forms.Button();
|
||
this.btn_down = new System.Windows.Forms.Button();
|
||
this.btn_left = new System.Windows.Forms.Button();
|
||
this.btn_right = new System.Windows.Forms.Button();
|
||
this.pictureBox = new System.Windows.Forms.PictureBox();
|
||
this.statusStrip.SuspendLayout();
|
||
this.groupBox.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// btn_new
|
||
//
|
||
this.btn_new.Location = new System.Drawing.Point(12, 344);
|
||
this.btn_new.Name = "btn_new";
|
||
this.btn_new.Size = new System.Drawing.Size(75, 63);
|
||
this.btn_new.TabIndex = 10;
|
||
this.btn_new.Text = "Создать";
|
||
this.btn_new.Click += new System.EventHandler(this.btn_new_Click);
|
||
//
|
||
// statusStrip
|
||
//
|
||
this.statusStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
|
||
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.toolStripStatusLabelSpeed,
|
||
this.toolStripStatusLabelWeight,
|
||
this.toolStripStatusLabelColor});
|
||
this.statusStrip.Location = new System.Drawing.Point(0, 415);
|
||
this.statusStrip.Name = "statusStrip";
|
||
this.statusStrip.Size = new System.Drawing.Size(1074, 26);
|
||
this.statusStrip.TabIndex = 8;
|
||
this.statusStrip.Text = "statusStrip";
|
||
//
|
||
// toolStripStatusLabelSpeed
|
||
//
|
||
this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
|
||
this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(80, 20);
|
||
this.toolStripStatusLabelSpeed.Text = "Скорость: ";
|
||
//
|
||
// toolStripStatusLabelWeight
|
||
//
|
||
this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
|
||
this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(40, 20);
|
||
this.toolStripStatusLabelWeight.Text = "Вес: ";
|
||
//
|
||
// toolStripStatusLabelColor
|
||
//
|
||
this.toolStripStatusLabelColor.Name = "toolStripStatusLabelColor";
|
||
this.toolStripStatusLabelColor.Size = new System.Drawing.Size(49, 20);
|
||
this.toolStripStatusLabelColor.Text = "Цвет: ";
|
||
//
|
||
// groupBox
|
||
//
|
||
this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.groupBox.Controls.Add(this.btn_up);
|
||
this.groupBox.Controls.Add(this.btn_down);
|
||
this.groupBox.Controls.Add(this.btn_left);
|
||
this.groupBox.Controls.Add(this.btn_right);
|
||
this.groupBox.Location = new System.Drawing.Point(923, 325);
|
||
this.groupBox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.groupBox.Name = "groupBox";
|
||
this.groupBox.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.groupBox.Size = new System.Drawing.Size(139, 88);
|
||
this.groupBox.TabIndex = 9;
|
||
this.groupBox.TabStop = false;
|
||
//
|
||
// btn_up
|
||
//
|
||
this.btn_up.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.btn_up.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_up1;
|
||
this.btn_up.Location = new System.Drawing.Point(51, 0);
|
||
this.btn_up.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.btn_up.Name = "btn_up";
|
||
this.btn_up.Size = new System.Drawing.Size(40, 40);
|
||
this.btn_up.TabIndex = 1;
|
||
this.btn_up.UseVisualStyleBackColor = true;
|
||
this.btn_up.Click += new System.EventHandler(this.btn_move_Click);
|
||
//
|
||
// btn_down
|
||
//
|
||
this.btn_down.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.btn_down.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_down1;
|
||
this.btn_down.Location = new System.Drawing.Point(51, 42);
|
||
this.btn_down.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.btn_down.Name = "btn_down";
|
||
this.btn_down.Size = new System.Drawing.Size(40, 40);
|
||
this.btn_down.TabIndex = 2;
|
||
this.btn_down.Text = " ";
|
||
this.btn_down.UseVisualStyleBackColor = true;
|
||
this.btn_down.Click += new System.EventHandler(this.btn_move_Click);
|
||
//
|
||
// btn_left
|
||
//
|
||
this.btn_left.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.btn_left.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_left1;
|
||
this.btn_left.Location = new System.Drawing.Point(5, 42);
|
||
this.btn_left.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.btn_left.Name = "btn_left";
|
||
this.btn_left.Size = new System.Drawing.Size(40, 40);
|
||
this.btn_left.TabIndex = 3;
|
||
this.btn_left.UseVisualStyleBackColor = true;
|
||
this.btn_left.Click += new System.EventHandler(this.btn_move_Click);
|
||
//
|
||
// btn_right
|
||
//
|
||
this.btn_right.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.btn_right.Image = global::PIbd_21_Potapov_N.S._Catamaran_Base.Properties.Resources.arrow_right1;
|
||
this.btn_right.Location = new System.Drawing.Point(97, 44);
|
||
this.btn_right.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.btn_right.Name = "btn_right";
|
||
this.btn_right.Size = new System.Drawing.Size(40, 40);
|
||
this.btn_right.TabIndex = 4;
|
||
this.btn_right.UseVisualStyleBackColor = true;
|
||
this.btn_right.Click += new System.EventHandler(this.btn_move_Click);
|
||
//
|
||
// pictureBox
|
||
//
|
||
this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.pictureBox.Location = new System.Drawing.Point(0, 0);
|
||
this.pictureBox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.pictureBox.Name = "pictureBox";
|
||
this.pictureBox.Size = new System.Drawing.Size(1074, 441);
|
||
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||
this.pictureBox.TabIndex = 0;
|
||
this.pictureBox.TabStop = false;
|
||
//
|
||
// FormCatamaran
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(1074, 441);
|
||
this.Controls.Add(this.groupBox);
|
||
this.Controls.Add(this.btn_new);
|
||
this.Controls.Add(this.statusStrip);
|
||
this.Controls.Add(this.pictureBox);
|
||
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||
this.Name = "FormCatamaran";
|
||
this.Text = "Лодка";
|
||
this.statusStrip.ResumeLayout(false);
|
||
this.statusStrip.PerformLayout();
|
||
this.groupBox.ResumeLayout(false);
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.PictureBox pictureBox;
|
||
private System.Windows.Forms.Button btn_up;
|
||
private System.Windows.Forms.Button btn_down;
|
||
private System.Windows.Forms.Button btn_left;
|
||
private System.Windows.Forms.Button btn_right;
|
||
private System.Windows.Forms.Button btn_new;
|
||
private System.Windows.Forms.StatusStrip statusStrip;
|
||
private System.Windows.Forms.GroupBox groupBox;
|
||
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelSpeed;
|
||
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelWeight;
|
||
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelColor;
|
||
}
|
||
}
|
||
|