mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
88 lines
2.6 KiB
C#
88 lines
2.6 KiB
C#
namespace CodeImp.DoomBuilder.Controls
|
|
{
|
|
partial class VertexInfoPanel
|
|
{
|
|
/// <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()
|
|
{
|
|
System.Windows.Forms.GroupBox groupBox1;
|
|
System.Windows.Forms.Label label1;
|
|
this.position = new System.Windows.Forms.Label();
|
|
groupBox1 = new System.Windows.Forms.GroupBox();
|
|
label1 = new System.Windows.Forms.Label();
|
|
groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
groupBox1.Controls.Add(this.position);
|
|
groupBox1.Controls.Add(label1);
|
|
groupBox1.Location = new System.Drawing.Point(0, 0);
|
|
groupBox1.Name = "groupBox1";
|
|
groupBox1.Size = new System.Drawing.Size(163, 100);
|
|
groupBox1.TabIndex = 0;
|
|
groupBox1.TabStop = false;
|
|
groupBox1.Text = " Vertex ";
|
|
//
|
|
// position
|
|
//
|
|
this.position.AutoSize = true;
|
|
this.position.Location = new System.Drawing.Point(66, 34);
|
|
this.position.Name = "position";
|
|
this.position.Size = new System.Drawing.Size(25, 14);
|
|
this.position.TabIndex = 3;
|
|
this.position.Text = "0, 0";
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new System.Drawing.Point(13, 34);
|
|
label1.Name = "label1";
|
|
label1.Size = new System.Drawing.Size(47, 14);
|
|
label1.TabIndex = 2;
|
|
label1.Text = "Position:";
|
|
//
|
|
// VertexInfoPanel
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.Controls.Add(groupBox1);
|
|
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.MaximumSize = new System.Drawing.Size(10000, 100);
|
|
this.MinimumSize = new System.Drawing.Size(100, 100);
|
|
this.Name = "VertexInfoPanel";
|
|
this.Size = new System.Drawing.Size(393, 100);
|
|
groupBox1.ResumeLayout(false);
|
|
groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label position;
|
|
|
|
}
|
|
}
|