mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 09:56:25 +00:00
415 lines
23 KiB
C#
415 lines
23 KiB
C#
|
namespace NBTPlus
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <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.components = new System.ComponentModel.Container();
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|||
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|||
|
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
|
|||
|
this._nodeTree = new System.Windows.Forms.TreeView();
|
|||
|
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
|
|||
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|||
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|||
|
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
|||
|
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton10 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton11 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton12 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton15 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton13 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStripButton14 = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.openFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.menuStrip1.SuspendLayout();
|
|||
|
this.toolStripContainer1.ContentPanel.SuspendLayout();
|
|||
|
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
|
|||
|
this.toolStripContainer1.SuspendLayout();
|
|||
|
this.toolStrip1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// menuStrip1
|
|||
|
//
|
|||
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.fileToolStripMenuItem,
|
|||
|
this.editToolStripMenuItem,
|
|||
|
this.searchToolStripMenuItem,
|
|||
|
this.helpToolStripMenuItem});
|
|||
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.menuStrip1.Name = "menuStrip1";
|
|||
|
this.menuStrip1.Size = new System.Drawing.Size(562, 24);
|
|||
|
this.menuStrip1.TabIndex = 0;
|
|||
|
this.menuStrip1.Text = "menuStrip1";
|
|||
|
//
|
|||
|
// editToolStripMenuItem
|
|||
|
//
|
|||
|
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
|
|||
|
this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
|
|||
|
this.editToolStripMenuItem.Text = "&Edit";
|
|||
|
//
|
|||
|
// searchToolStripMenuItem
|
|||
|
//
|
|||
|
this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
|
|||
|
this.searchToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
|
|||
|
this.searchToolStripMenuItem.Text = "&Search";
|
|||
|
//
|
|||
|
// helpToolStripMenuItem
|
|||
|
//
|
|||
|
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.aboutToolStripMenuItem});
|
|||
|
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
|||
|
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
|||
|
this.helpToolStripMenuItem.Text = "&Help";
|
|||
|
//
|
|||
|
// aboutToolStripMenuItem
|
|||
|
//
|
|||
|
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
|||
|
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
|
|||
|
this.aboutToolStripMenuItem.Text = "&About";
|
|||
|
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// toolStripContainer1
|
|||
|
//
|
|||
|
//
|
|||
|
// toolStripContainer1.ContentPanel
|
|||
|
//
|
|||
|
this.toolStripContainer1.ContentPanel.Controls.Add(this._nodeTree);
|
|||
|
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(562, 351);
|
|||
|
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.toolStripContainer1.Location = new System.Drawing.Point(0, 24);
|
|||
|
this.toolStripContainer1.Name = "toolStripContainer1";
|
|||
|
this.toolStripContainer1.Size = new System.Drawing.Size(562, 376);
|
|||
|
this.toolStripContainer1.TabIndex = 1;
|
|||
|
this.toolStripContainer1.Text = "toolStripContainer1";
|
|||
|
//
|
|||
|
// toolStripContainer1.TopToolStripPanel
|
|||
|
//
|
|||
|
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
|
|||
|
//
|
|||
|
// _nodeTree
|
|||
|
//
|
|||
|
this._nodeTree.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this._nodeTree.ImageIndex = 0;
|
|||
|
this._nodeTree.ImageList = this.imageList1;
|
|||
|
this._nodeTree.Location = new System.Drawing.Point(0, 0);
|
|||
|
this._nodeTree.Name = "_nodeTree";
|
|||
|
this._nodeTree.SelectedImageIndex = 0;
|
|||
|
this._nodeTree.Size = new System.Drawing.Size(562, 351);
|
|||
|
this._nodeTree.TabIndex = 0;
|
|||
|
//
|
|||
|
// imageList1
|
|||
|
//
|
|||
|
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
|
|||
|
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
|
|||
|
this.imageList1.Images.SetKeyName(0, "document-attribute-b.png");
|
|||
|
this.imageList1.Images.SetKeyName(1, "document-attribute-s.png");
|
|||
|
this.imageList1.Images.SetKeyName(2, "document-attribute-i.png");
|
|||
|
this.imageList1.Images.SetKeyName(3, "document-attribute-l.png");
|
|||
|
this.imageList1.Images.SetKeyName(4, "document-attribute-f.png");
|
|||
|
this.imageList1.Images.SetKeyName(5, "document-attribute-d.png");
|
|||
|
this.imageList1.Images.SetKeyName(6, "edit-code.png");
|
|||
|
this.imageList1.Images.SetKeyName(7, "edit-small-caps.png");
|
|||
|
this.imageList1.Images.SetKeyName(8, "edit-list.png");
|
|||
|
this.imageList1.Images.SetKeyName(9, "box.png");
|
|||
|
this.imageList1.Images.SetKeyName(10, "folder.png");
|
|||
|
this.imageList1.Images.SetKeyName(11, "block.png");
|
|||
|
this.imageList1.Images.SetKeyName(12, "wooden-box.png");
|
|||
|
this.imageList1.Images.SetKeyName(13, "map.png");
|
|||
|
//
|
|||
|
// toolStrip1
|
|||
|
//
|
|||
|
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
|
|||
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.toolStripButton1,
|
|||
|
this.toolStripButton2,
|
|||
|
this.toolStripSeparator1,
|
|||
|
this.toolStripButton3,
|
|||
|
this.toolStripButton4,
|
|||
|
this.toolStripButton5,
|
|||
|
this.toolStripSeparator2,
|
|||
|
this.toolStripButton6,
|
|||
|
this.toolStripButton7,
|
|||
|
this.toolStripButton8,
|
|||
|
this.toolStripButton9,
|
|||
|
this.toolStripButton10,
|
|||
|
this.toolStripButton11,
|
|||
|
this.toolStripButton12,
|
|||
|
this.toolStripButton15,
|
|||
|
this.toolStripButton13,
|
|||
|
this.toolStripButton14});
|
|||
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.toolStrip1.Name = "toolStrip1";
|
|||
|
this.toolStrip1.Size = new System.Drawing.Size(562, 25);
|
|||
|
this.toolStrip1.Stretch = true;
|
|||
|
this.toolStrip1.TabIndex = 0;
|
|||
|
//
|
|||
|
// toolStripSeparator1
|
|||
|
//
|
|||
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|||
|
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
|
|||
|
//
|
|||
|
// toolStripSeparator2
|
|||
|
//
|
|||
|
this.toolStripSeparator2.Name = "toolStripSeparator2";
|
|||
|
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
|
|||
|
//
|
|||
|
// toolStripButton1
|
|||
|
//
|
|||
|
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
|
|||
|
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton1.Name = "toolStripButton1";
|
|||
|
this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton1.Text = "toolStripButton1";
|
|||
|
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
|||
|
//
|
|||
|
// toolStripButton2
|
|||
|
//
|
|||
|
this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
|
|||
|
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton2.Name = "toolStripButton2";
|
|||
|
this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton2.Text = "toolStripButton2";
|
|||
|
//
|
|||
|
// toolStripButton3
|
|||
|
//
|
|||
|
this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
|
|||
|
this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton3.Name = "toolStripButton3";
|
|||
|
this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton3.Text = "toolStripButton3";
|
|||
|
//
|
|||
|
// toolStripButton4
|
|||
|
//
|
|||
|
this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
|
|||
|
this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton4.Name = "toolStripButton4";
|
|||
|
this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton4.Text = "toolStripButton4";
|
|||
|
//
|
|||
|
// toolStripButton5
|
|||
|
//
|
|||
|
this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
|
|||
|
this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton5.Name = "toolStripButton5";
|
|||
|
this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton5.Text = "toolStripButton5";
|
|||
|
//
|
|||
|
// toolStripButton6
|
|||
|
//
|
|||
|
this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
|
|||
|
this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton6.Name = "toolStripButton6";
|
|||
|
this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton6.Text = "toolStripButton6";
|
|||
|
//
|
|||
|
// toolStripButton7
|
|||
|
//
|
|||
|
this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
|
|||
|
this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton7.Name = "toolStripButton7";
|
|||
|
this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton7.Text = "toolStripButton7";
|
|||
|
//
|
|||
|
// toolStripButton8
|
|||
|
//
|
|||
|
this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
|
|||
|
this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton8.Name = "toolStripButton8";
|
|||
|
this.toolStripButton8.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton8.Text = "toolStripButton8";
|
|||
|
//
|
|||
|
// toolStripButton9
|
|||
|
//
|
|||
|
this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
|
|||
|
this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton9.Name = "toolStripButton9";
|
|||
|
this.toolStripButton9.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton9.Text = "toolStripButton9";
|
|||
|
//
|
|||
|
// toolStripButton10
|
|||
|
//
|
|||
|
this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
|
|||
|
this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton10.Name = "toolStripButton10";
|
|||
|
this.toolStripButton10.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton10.Text = "toolStripButton10";
|
|||
|
//
|
|||
|
// toolStripButton11
|
|||
|
//
|
|||
|
this.toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton11.Image")));
|
|||
|
this.toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton11.Name = "toolStripButton11";
|
|||
|
this.toolStripButton11.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton11.Text = "toolStripButton11";
|
|||
|
//
|
|||
|
// toolStripButton12
|
|||
|
//
|
|||
|
this.toolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
|
|||
|
this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton12.Name = "toolStripButton12";
|
|||
|
this.toolStripButton12.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton12.Text = "toolStripButton12";
|
|||
|
//
|
|||
|
// toolStripButton15
|
|||
|
//
|
|||
|
this.toolStripButton15.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton15.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton15.Image")));
|
|||
|
this.toolStripButton15.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton15.Name = "toolStripButton15";
|
|||
|
this.toolStripButton15.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton15.Text = "toolStripButton15";
|
|||
|
//
|
|||
|
// toolStripButton13
|
|||
|
//
|
|||
|
this.toolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
|
|||
|
this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton13.Name = "toolStripButton13";
|
|||
|
this.toolStripButton13.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton13.Text = "toolStripButton13";
|
|||
|
//
|
|||
|
// toolStripButton14
|
|||
|
//
|
|||
|
this.toolStripButton14.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
this.toolStripButton14.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton14.Image")));
|
|||
|
this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.toolStripButton14.Name = "toolStripButton14";
|
|||
|
this.toolStripButton14.Size = new System.Drawing.Size(23, 22);
|
|||
|
this.toolStripButton14.Text = "toolStripButton14";
|
|||
|
//
|
|||
|
// fileToolStripMenuItem
|
|||
|
//
|
|||
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.openToolStripMenuItem,
|
|||
|
this.openFolderToolStripMenuItem});
|
|||
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|||
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|||
|
this.fileToolStripMenuItem.Text = "&File";
|
|||
|
//
|
|||
|
// openToolStripMenuItem
|
|||
|
//
|
|||
|
this.openToolStripMenuItem.Image = global::NBTPlus.Properties.Resources.folder_open_document;
|
|||
|
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
|
|||
|
this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
|
|||
|
this.openToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
|
|||
|
this.openToolStripMenuItem.Text = "&Open...";
|
|||
|
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// openFolderToolStripMenuItem
|
|||
|
//
|
|||
|
this.openFolderToolStripMenuItem.Image = global::NBTPlus.Properties.Resources.folder_open;
|
|||
|
this.openFolderToolStripMenuItem.Name = "openFolderToolStripMenuItem";
|
|||
|
this.openFolderToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
|
|||
|
| System.Windows.Forms.Keys.O)));
|
|||
|
this.openFolderToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
|
|||
|
this.openFolderToolStripMenuItem.Text = "Open Folder...";
|
|||
|
this.openFolderToolStripMenuItem.Click += new System.EventHandler(this.openFolderToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(562, 400);
|
|||
|
this.Controls.Add(this.toolStripContainer1);
|
|||
|
this.Controls.Add(this.menuStrip1);
|
|||
|
this.MainMenuStrip = this.menuStrip1;
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "NBTExplorer";
|
|||
|
this.menuStrip1.ResumeLayout(false);
|
|||
|
this.menuStrip1.PerformLayout();
|
|||
|
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
|
|||
|
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
|
|||
|
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
|
|||
|
this.toolStripContainer1.ResumeLayout(false);
|
|||
|
this.toolStripContainer1.PerformLayout();
|
|||
|
this.toolStrip1.ResumeLayout(false);
|
|||
|
this.toolStrip1.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem searchToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
|
|||
|
private System.Windows.Forms.TreeView _nodeTree;
|
|||
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton1;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton2;
|
|||
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton3;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton4;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton5;
|
|||
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton6;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton7;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton8;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton9;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton10;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton11;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton12;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton13;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton14;
|
|||
|
private System.Windows.Forms.ImageList imageList1;
|
|||
|
private System.Windows.Forms.ToolStripButton toolStripButton15;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem openFolderToolStripMenuItem;
|
|||
|
}
|
|||
|
}
|
|||
|
|