-
Notifications
You must be signed in to change notification settings - Fork 0
/
WorldForm.Designer.cs
109 lines (103 loc) · 5.01 KB
/
WorldForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
namespace R2ObjView
{
partial class WorldForm
{
/// <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.worldTree = new System.Windows.Forms.TreeView();
this.toolStrip = new System.Windows.Forms.ToolStrip();
this.spoToolStripButton = new System.Windows.Forms.ToolStripButton();
this.fmiToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStrip.SuspendLayout();
this.SuspendLayout();
//
// worldTree
//
this.worldTree.Dock = System.Windows.Forms.DockStyle.Fill;
this.worldTree.Location = new System.Drawing.Point(0, 0);
this.worldTree.Name = "worldTree";
this.worldTree.Size = new System.Drawing.Size(584, 361);
this.worldTree.TabIndex = 0;
this.worldTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.worldTree_NodeMouseClick);
this.worldTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.worldTree_NodeMouseDoubleClick);
//
// toolStrip
//
this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.spoToolStripButton,
this.fmiToolStripButton});
this.toolStrip.Location = new System.Drawing.Point(0, 0);
this.toolStrip.Name = "toolStrip";
this.toolStrip.ShowItemToolTips = false;
this.toolStrip.Size = new System.Drawing.Size(89, 25);
this.toolStrip.TabIndex = 1;
this.toolStrip.Text = "toolStrip1";
this.toolStrip.Visible = false;
//
// spoToolStripButton
//
this.spoToolStripButton.AccessibleDescription = "SuperObject Properties";
this.spoToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.spoToolStripButton.Image = global::R2ObjView.Resources.ImgSpo;
this.spoToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.spoToolStripButton.MergeAction = System.Windows.Forms.MergeAction.Replace;
this.spoToolStripButton.Name = "spoToolStripButton";
this.spoToolStripButton.Size = new System.Drawing.Size(23, 22);
this.spoToolStripButton.Text = "Superobject Properties";
this.spoToolStripButton.Click += new System.EventHandler(this.spoToolStripButton_Click);
//
// fmiToolStripButton
//
this.fmiToolStripButton.AccessibleDescription = "Group By Family";
this.fmiToolStripButton.CheckOnClick = true;
this.fmiToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.fmiToolStripButton.Image = global::R2ObjView.Resources.ImgFamilyTree;
this.fmiToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.fmiToolStripButton.Name = "fmiToolStripButton";
this.fmiToolStripButton.Size = new System.Drawing.Size(23, 22);
this.fmiToolStripButton.Text = "Group Objects";
this.fmiToolStripButton.CheckedChanged += new System.EventHandler(this.fmiToolStripButton_CheckedChanged);
//
// WorldForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(584, 361);
this.Controls.Add(this.toolStrip);
this.Controls.Add(this.worldTree);
this.Name = "WorldForm";
this.Text = "World Structure";
this.toolStrip.ResumeLayout(false);
this.toolStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TreeView worldTree;
private System.Windows.Forms.ToolStrip toolStrip;
private System.Windows.Forms.ToolStripButton spoToolStripButton;
private System.Windows.Forms.ToolStripButton fmiToolStripButton;
}
}