Worms4Editor/W4Gui/Components/VectorSelect.Designer.cs

155 lines
6.4 KiB
C#

namespace W4Gui.Components
{
partial class VectorSelect
{
/// <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 Component 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.tblVector = new System.Windows.Forms.TableLayoutPanel();
this.selX = new W4Gui.Components.FloatUpDown();
this.selY = new W4Gui.Components.FloatUpDown();
this.selZ = new W4Gui.Components.FloatUpDown();
this.lblX = new System.Windows.Forms.Label();
this.lblY = new System.Windows.Forms.Label();
this.lblZ = new System.Windows.Forms.Label();
this.tblVector.SuspendLayout();
this.SuspendLayout();
//
// tblVector
//
this.tblVector.AutoSize = true;
this.tblVector.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset;
this.tblVector.ColumnCount = 6;
this.tblVector.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblVector.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tblVector.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblVector.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tblVector.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblVector.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tblVector.Controls.Add(this.lblZ, 4, 0);
this.tblVector.Controls.Add(this.lblY, 2, 0);
this.tblVector.Controls.Add(this.selX, 1, 0);
this.tblVector.Controls.Add(this.selY, 3, 0);
this.tblVector.Controls.Add(this.selZ, 5, 0);
this.tblVector.Controls.Add(this.lblX, 0, 0);
this.tblVector.Dock = System.Windows.Forms.DockStyle.Top;
this.tblVector.Location = new System.Drawing.Point(0, 0);
this.tblVector.Name = "tblVector";
this.tblVector.RowCount = 1;
this.tblVector.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tblVector.Size = new System.Drawing.Size(870, 33);
this.tblVector.TabIndex = 0;
//
// selX
//
this.selX.Dock = System.Windows.Forms.DockStyle.Top;
this.selX.Location = new System.Drawing.Point(27, 5);
this.selX.Name = "selX";
this.selX.Size = new System.Drawing.Size(259, 23);
this.selX.TabIndex = 0;
this.selX.Text = "0.0";
this.selX.Value = 0F;
//
// selY
//
this.selY.Dock = System.Windows.Forms.DockStyle.Top;
this.selY.Location = new System.Drawing.Point(316, 5);
this.selY.Name = "selY";
this.selY.Size = new System.Drawing.Size(259, 23);
this.selY.TabIndex = 1;
this.selY.Text = "0.0";
this.selY.Value = 0F;
//
// selZ
//
this.selZ.Dock = System.Windows.Forms.DockStyle.Top;
this.selZ.Location = new System.Drawing.Point(605, 5);
this.selZ.Name = "selZ";
this.selZ.Size = new System.Drawing.Size(260, 23);
this.selZ.TabIndex = 2;
this.selZ.Text = "0.0";
this.selZ.Value = 0F;
//
// lblX
//
this.lblX.AutoSize = true;
this.lblX.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblX.Location = new System.Drawing.Point(5, 2);
this.lblX.Name = "lblX";
this.lblX.Size = new System.Drawing.Size(14, 29);
this.lblX.TabIndex = 3;
this.lblX.Text = "X";
this.lblX.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblY
//
this.lblY.AutoSize = true;
this.lblY.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblY.Location = new System.Drawing.Point(294, 2);
this.lblY.Name = "lblY";
this.lblY.Size = new System.Drawing.Size(14, 29);
this.lblY.TabIndex = 4;
this.lblY.Text = "Y";
this.lblY.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblZ
//
this.lblZ.AutoSize = true;
this.lblZ.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblZ.Location = new System.Drawing.Point(583, 2);
this.lblZ.Name = "lblZ";
this.lblZ.Size = new System.Drawing.Size(14, 29);
this.lblZ.TabIndex = 5;
this.lblZ.Text = "Z";
this.lblZ.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// VectorSelect
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.Controls.Add(this.tblVector);
this.Name = "VectorSelect";
this.Size = new System.Drawing.Size(870, 34);
this.tblVector.ResumeLayout(false);
this.tblVector.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TableLayoutPanel tblVector;
private Label lblZ;
private Label lblY;
private FloatUpDown selX;
private FloatUpDown selY;
private FloatUpDown selZ;
private Label lblX;
}
}