209 lines
11 KiB
C#
209 lines
11 KiB
C#
namespace Catamaran
|
|
{
|
|
partial class FormMap
|
|
{
|
|
/// <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.statusStrip1 = 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.pictureBoxCatamaran = new System.Windows.Forms.PictureBox();
|
|
this.buttonUp = new System.Windows.Forms.Button();
|
|
this.buttonDown = new System.Windows.Forms.Button();
|
|
this.buttonLeft = new System.Windows.Forms.Button();
|
|
this.buttonRight = new System.Windows.Forms.Button();
|
|
this.buttonCreate = new System.Windows.Forms.Button();
|
|
this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox();
|
|
this.buttonCreateModif = new System.Windows.Forms.Button();
|
|
this.statusStrip1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCatamaran)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.toolStripStatusLabelSpeed,
|
|
this.toolStripStatusLabelWeight,
|
|
this.toolStripStatusLabelColor});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 436);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(826, 32);
|
|
this.statusStrip1.TabIndex = 0;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// toolStripStatusLabelSpeed
|
|
//
|
|
this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
|
|
this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(62, 25);
|
|
this.toolStripStatusLabelSpeed.Text = "Speed";
|
|
//
|
|
// toolStripStatusLabelWeight
|
|
//
|
|
this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
|
|
this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(68, 25);
|
|
this.toolStripStatusLabelWeight.Text = "Weight";
|
|
//
|
|
// toolStripStatusLabelColor
|
|
//
|
|
this.toolStripStatusLabelColor.Name = "toolStripStatusLabelColor";
|
|
this.toolStripStatusLabelColor.Size = new System.Drawing.Size(55, 25);
|
|
this.toolStripStatusLabelColor.Text = "Color";
|
|
//
|
|
// pictureBoxCatamaran
|
|
//
|
|
this.pictureBoxCatamaran.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.pictureBoxCatamaran.Location = new System.Drawing.Point(0, 0);
|
|
this.pictureBoxCatamaran.Name = "pictureBoxCatamaran";
|
|
this.pictureBoxCatamaran.Size = new System.Drawing.Size(826, 436);
|
|
this.pictureBoxCatamaran.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
|
this.pictureBoxCatamaran.TabIndex = 1;
|
|
this.pictureBoxCatamaran.TabStop = false;
|
|
//
|
|
// buttonUp
|
|
//
|
|
this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonUp.BackgroundImage = global::Catamaran.Properties.Resources.Up;
|
|
this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
|
this.buttonUp.Location = new System.Drawing.Point(683, 344);
|
|
this.buttonUp.Name = "buttonUp";
|
|
this.buttonUp.Size = new System.Drawing.Size(30, 30);
|
|
this.buttonUp.TabIndex = 2;
|
|
this.buttonUp.UseVisualStyleBackColor = true;
|
|
this.buttonUp.Click += new System.EventHandler(this.buttonMove_Click);
|
|
//
|
|
// buttonDown
|
|
//
|
|
this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonDown.BackgroundImage = global::Catamaran.Properties.Resources.Down;
|
|
this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
|
this.buttonDown.Location = new System.Drawing.Point(683, 380);
|
|
this.buttonDown.Name = "buttonDown";
|
|
this.buttonDown.Size = new System.Drawing.Size(30, 30);
|
|
this.buttonDown.TabIndex = 3;
|
|
this.buttonDown.UseVisualStyleBackColor = true;
|
|
this.buttonDown.Click += new System.EventHandler(this.buttonMove_Click);
|
|
//
|
|
// buttonLeft
|
|
//
|
|
this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonLeft.BackgroundImage = global::Catamaran.Properties.Resources.Left;
|
|
this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
|
this.buttonLeft.Location = new System.Drawing.Point(647, 372);
|
|
this.buttonLeft.Name = "buttonLeft";
|
|
this.buttonLeft.Size = new System.Drawing.Size(30, 30);
|
|
this.buttonLeft.TabIndex = 4;
|
|
this.buttonLeft.UseVisualStyleBackColor = true;
|
|
this.buttonLeft.Click += new System.EventHandler(this.buttonMove_Click);
|
|
//
|
|
// buttonRight
|
|
//
|
|
this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonRight.BackgroundImage = global::Catamaran.Properties.Resources.Right;
|
|
this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
|
this.buttonRight.Location = new System.Drawing.Point(719, 372);
|
|
this.buttonRight.Name = "buttonRight";
|
|
this.buttonRight.Size = new System.Drawing.Size(30, 30);
|
|
this.buttonRight.TabIndex = 5;
|
|
this.buttonRight.UseVisualStyleBackColor = true;
|
|
this.buttonRight.Click += new System.EventHandler(this.buttonMove_Click);
|
|
//
|
|
// buttonCreate
|
|
//
|
|
this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonCreate.Location = new System.Drawing.Point(14, 380);
|
|
this.buttonCreate.Name = "buttonCreate";
|
|
this.buttonCreate.Size = new System.Drawing.Size(70, 30);
|
|
this.buttonCreate.TabIndex = 6;
|
|
this.buttonCreate.Text = "Cteate";
|
|
this.buttonCreate.UseVisualStyleBackColor = true;
|
|
this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click);
|
|
//
|
|
// comboBoxSelectorMap
|
|
//
|
|
this.comboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxSelectorMap.FormattingEnabled = true;
|
|
this.comboBoxSelectorMap.Items.AddRange(new object[] {
|
|
"SimpleMap",
|
|
"SecondMap"});
|
|
this.comboBoxSelectorMap.Location = new System.Drawing.Point(12, 12);
|
|
this.comboBoxSelectorMap.Name = "comboBoxSelectorMap";
|
|
this.comboBoxSelectorMap.Size = new System.Drawing.Size(121, 28);
|
|
this.comboBoxSelectorMap.TabIndex = 7;
|
|
this.comboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.comboBoxSelectorMap_SelectedIndexChanged);
|
|
//
|
|
// buttonCreateModif
|
|
//
|
|
this.buttonCreateModif.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonCreateModif.Location = new System.Drawing.Point(117, 380);
|
|
this.buttonCreateModif.Name = "buttonCreateModif";
|
|
this.buttonCreateModif.Size = new System.Drawing.Size(102, 30);
|
|
this.buttonCreateModif.TabIndex = 8;
|
|
this.buttonCreateModif.Text = "Modification";
|
|
this.buttonCreateModif.UseVisualStyleBackColor = true;
|
|
this.buttonCreateModif.Click += new System.EventHandler(this.buttonCreateModif_Click);
|
|
//
|
|
// FormMap
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(826, 468);
|
|
this.Controls.Add(this.buttonCreateModif);
|
|
this.Controls.Add(this.comboBoxSelectorMap);
|
|
this.Controls.Add(this.buttonCreate);
|
|
this.Controls.Add(this.buttonRight);
|
|
this.Controls.Add(this.buttonLeft);
|
|
this.Controls.Add(this.buttonDown);
|
|
this.Controls.Add(this.buttonUp);
|
|
this.Controls.Add(this.pictureBoxCatamaran);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Name = "FormMap";
|
|
this.Text = "Map";
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCatamaran)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelSpeed;
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelWeight;
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelColor;
|
|
private System.Windows.Forms.PictureBox pictureBoxCatamaran;
|
|
private System.Windows.Forms.Button buttonUp;
|
|
private System.Windows.Forms.Button buttonDown;
|
|
private System.Windows.Forms.Button buttonLeft;
|
|
private System.Windows.Forms.Button buttonRight;
|
|
private System.Windows.Forms.Button buttonCreate;
|
|
private System.Windows.Forms.ComboBox comboBoxSelectorMap;
|
|
private System.Windows.Forms.Button buttonCreateModif;
|
|
}
|
|
} |