116 lines
4.9 KiB
C#
116 lines
4.9 KiB
C#
namespace RoomDesigner
|
|
{
|
|
partial class frmMain
|
|
{
|
|
/// <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.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
|
this.PropertyGridRoom = new System.Windows.Forms.PropertyGrid();
|
|
this.tabObjects = new System.Windows.Forms.TabControl();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.splitContainer2.Panel1.SuspendLayout();
|
|
this.splitContainer2.Panel2.SuspendLayout();
|
|
this.splitContainer2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
|
|
this.splitContainer1.Size = new System.Drawing.Size(784, 564);
|
|
this.splitContainer1.SplitterDistance = 253;
|
|
this.splitContainer1.TabIndex = 0;
|
|
//
|
|
// splitContainer2
|
|
//
|
|
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer2.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer2.Name = "splitContainer2";
|
|
this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitContainer2.Panel1
|
|
//
|
|
this.splitContainer2.Panel1.Controls.Add(this.PropertyGridRoom);
|
|
//
|
|
// splitContainer2.Panel2
|
|
//
|
|
this.splitContainer2.Panel2.Controls.Add(this.tabObjects);
|
|
this.splitContainer2.Size = new System.Drawing.Size(253, 564);
|
|
this.splitContainer2.SplitterDistance = 294;
|
|
this.splitContainer2.TabIndex = 0;
|
|
//
|
|
// PropertyGridRoom
|
|
//
|
|
this.PropertyGridRoom.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.PropertyGridRoom.Location = new System.Drawing.Point(0, 0);
|
|
this.PropertyGridRoom.Name = "PropertyGridRoom";
|
|
this.PropertyGridRoom.Size = new System.Drawing.Size(253, 294);
|
|
this.PropertyGridRoom.TabIndex = 0;
|
|
//
|
|
// tabObjects
|
|
//
|
|
this.tabObjects.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tabObjects.Location = new System.Drawing.Point(0, 0);
|
|
this.tabObjects.Name = "tabObjects";
|
|
this.tabObjects.SelectedIndex = 0;
|
|
this.tabObjects.Size = new System.Drawing.Size(253, 266);
|
|
this.tabObjects.TabIndex = 0;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(784, 564);
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Name = "Form1";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Mud Designer: Room Designer";
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.splitContainer2.Panel1.ResumeLayout(false);
|
|
this.splitContainer2.Panel2.ResumeLayout(false);
|
|
this.splitContainer2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.SplitContainer splitContainer2;
|
|
private System.Windows.Forms.PropertyGrid PropertyGridRoom;
|
|
private System.Windows.Forms.TabControl tabObjects;
|
|
}
|
|
}
|
|
|