namespace XmlTree
{
partial class XmlForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XmlForm));
this.mainMenu = new System.Windows.Forms.MenuStrip();
this.fileMenu = new System.Windows.Forms.ToolStripMenuItem();
this.runMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.nextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip = new System.Windows.Forms.ToolStrip();
this.runButton = new System.Windows.Forms.ToolStripButton();
this.nextButton = new System.Windows.Forms.ToolStripButton();
this.statusBar = new System.Windows.Forms.StatusStrip();
this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.splitContainer = new System.Windows.Forms.SplitContainer();
this.treeView = new System.Windows.Forms.TreeView();
this.tabControl = new System.Windows.Forms.TabControl();
this.textPage = new System.Windows.Forms.TabPage();
this.textBox = new System.Windows.Forms.TextBox();
this.dataPage = new System.Windows.Forms.TabPage();
this.dataGrid = new System.Windows.Forms.DataGridView();
this.propertyPage = new System.Windows.Forms.TabPage();
this.propertyGrid = new System.Windows.Forms.PropertyGrid();
this.openMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openButton = new System.Windows.Forms.ToolStripButton();
this.saveButton = new System.Windows.Forms.ToolStripButton();
this.openDialog = new System.Windows.Forms.OpenFileDialog();
this.saveDialog = new System.Windows.Forms.SaveFileDialog();
this.toTextButton = new System.Windows.Forms.ToolStripButton();
this.fromTextButton = new System.Windows.Forms.ToolStripButton();
this.mainMenu.SuspendLayout();
this.toolStrip.SuspendLayout();
this.statusBar.SuspendLayout();
this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout();
this.splitContainer.SuspendLayout();
this.tabControl.SuspendLayout();
this.textPage.SuspendLayout();
this.dataPage.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
this.propertyPage.SuspendLayout();
this.SuspendLayout();
//
// mainMenu
//
this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileMenu});
this.mainMenu.Location = new System.Drawing.Point(0, 0);
this.mainMenu.Name = "mainMenu";
this.mainMenu.Size = new System.Drawing.Size(573, 24);
this.mainMenu.TabIndex = 0;
this.mainMenu.Text = "menuStrip1";
//
// fileMenu
//
this.fileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openMenuItem,
this.saveMenuItem,
this.runMenuItem,
this.nextToolStripMenuItem});
this.fileMenu.Name = "fileMenu";
this.fileMenu.Size = new System.Drawing.Size(35, 20);
this.fileMenu.Text = "File";
//
// runMenuItem
//
this.runMenuItem.Name = "runMenuItem";
this.runMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R)));
this.runMenuItem.Size = new System.Drawing.Size(155, 22);
this.runMenuItem.Text = "Run";
this.runMenuItem.Click += new System.EventHandler(this.runButton_Click);
//
// nextToolStripMenuItem
//
this.nextToolStripMenuItem.Name = "nextToolStripMenuItem";
this.nextToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.nextToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
this.nextToolStripMenuItem.Text = "Next";
this.nextToolStripMenuItem.Click += new System.EventHandler(this.nextButton_Click);
//
// toolStrip
//
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openButton,
this.saveButton,
this.runButton,
this.nextButton,
this.toTextButton,
this.fromTextButton});
this.toolStrip.Location = new System.Drawing.Point(0, 24);
this.toolStrip.Name = "toolStrip";
this.toolStrip.Size = new System.Drawing.Size(573, 25);
this.toolStrip.TabIndex = 1;
this.toolStrip.Text = "toolStrip1";
//
// runButton
//
this.runButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.runButton.Image = ((System.Drawing.Image)(resources.GetObject("runButton.Image")));
this.runButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.runButton.Name = "runButton";
this.runButton.Size = new System.Drawing.Size(30, 22);
this.runButton.Text = "Run";
this.runButton.Click += new System.EventHandler(this.runButton_Click);
//
// nextButton
//
this.nextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.nextButton.Image = ((System.Drawing.Image)(resources.GetObject("nextButton.Image")));
this.nextButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.nextButton.Name = "nextButton";
this.nextButton.Size = new System.Drawing.Size(34, 22);
this.nextButton.Text = "Next";
this.nextButton.Click += new System.EventHandler(this.nextButton_Click);
//
// statusBar
//
this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.statusLabel});
this.statusBar.Location = new System.Drawing.Point(0, 316);
this.statusBar.Name = "statusBar";
this.statusBar.Size = new System.Drawing.Size(573, 22);
this.statusBar.TabIndex = 2;
this.statusBar.Text = "statusStrip1";
//
// statusLabel
//
this.statusLabel.Name = "statusLabel";
this.statusLabel.Size = new System.Drawing.Size(0, 17);
//
// splitContainer
//
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer.Location = new System.Drawing.Point(0, 49);
this.splitContainer.Name = "splitContainer";
//
// splitContainer.Panel1
//
this.splitContainer.Panel1.Controls.Add(this.treeView);
//
// splitContainer.Panel2
//
this.splitContainer.Panel2.Controls.Add(this.tabControl);
this.splitContainer.Size = new System.Drawing.Size(573, 267);
this.splitContainer.SplitterDistance = 260;
this.splitContainer.TabIndex = 3;
//
// treeView
//
this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.treeView.Location = new System.Drawing.Point(0, 3);
this.treeView.Name = "treeView";
this.treeView.Size = new System.Drawing.Size(257, 261);
this.treeView.TabIndex = 0;
this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
//
// tabControl
//
this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tabControl.Controls.Add(this.textPage);
this.tabControl.Controls.Add(this.dataPage);
this.tabControl.Controls.Add(this.propertyPage);
this.tabControl.Location = new System.Drawing.Point(3, 3);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(303, 261);
this.tabControl.TabIndex = 0;
//
// textPage
//
this.textPage.Controls.Add(this.textBox);
this.textPage.Location = new System.Drawing.Point(4, 22);
this.textPage.Name = "textPage";
this.textPage.Padding = new System.Windows.Forms.Padding(3);
this.textPage.Size = new System.Drawing.Size(295, 235);
this.textPage.TabIndex = 0;
this.textPage.Text = "Text";
this.textPage.UseVisualStyleBackColor = true;
//
// textBox
//
this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox.Location = new System.Drawing.Point(4, 3);
this.textBox.Multiline = true;
this.textBox.Name = "textBox";
this.textBox.Size = new System.Drawing.Size(295, 239);
this.textBox.TabIndex = 0;
//
// dataPage
//
this.dataPage.Controls.Add(this.dataGrid);
this.dataPage.Location = new System.Drawing.Point(4, 22);
this.dataPage.Name = "dataPage";
this.dataPage.Padding = new System.Windows.Forms.Padding(3);
this.dataPage.Size = new System.Drawing.Size(295, 235);
this.dataPage.TabIndex = 1;
this.dataPage.Text = "Data";
this.dataPage.UseVisualStyleBackColor = true;
//
// dataGrid
//
this.dataGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGrid.Location = new System.Drawing.Point(5, 6);
this.dataGrid.Name = "dataGrid";
this.dataGrid.Size = new System.Drawing.Size(294, 233);
this.dataGrid.TabIndex = 0;
//
// propertyPage
//
this.propertyPage.Controls.Add(this.propertyGrid);
this.propertyPage.Location = new System.Drawing.Point(4, 22);
this.propertyPage.Name = "propertyPage";
this.propertyPage.Padding = new System.Windows.Forms.Padding(3);
this.propertyPage.Size = new System.Drawing.Size(295, 235);
this.propertyPage.TabIndex = 2;
this.propertyPage.Text = "Properties";
this.propertyPage.UseVisualStyleBackColor = true;
//
// propertyGrid
//
this.propertyGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.propertyGrid.Location = new System.Drawing.Point(1, 4);
this.propertyGrid.Name = "propertyGrid";
this.propertyGrid.Size = new System.Drawing.Size(298, 235);
this.propertyGrid.TabIndex = 0;
//
// openMenuItem
//
this.openMenuItem.Name = "openMenuItem";
this.openMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.openMenuItem.Size = new System.Drawing.Size(155, 22);
this.openMenuItem.Text = "Open ...";
this.openMenuItem.Click += new System.EventHandler(this.openButton_Click);
//
// saveMenuItem
//
this.saveMenuItem.Name = "saveMenuItem";
this.saveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.saveMenuItem.Size = new System.Drawing.Size(155, 22);
this.saveMenuItem.Text = "Save ...";
this.saveMenuItem.Click += new System.EventHandler(this.saveButton_Click);
//
// openButton
//
this.openButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.openButton.Image = ((System.Drawing.Image)(resources.GetObject("openButton.Image")));
this.openButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.openButton.Name = "openButton";
this.openButton.Size = new System.Drawing.Size(37, 22);
this.openButton.Text = "Open";
this.openButton.Click += new System.EventHandler(this.openButton_Click);
//
// saveButton
//
this.saveButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.saveButton.Image = ((System.Drawing.Image)(resources.GetObject("saveButton.Image")));
this.saveButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.saveButton.Name = "saveButton";
this.saveButton.Size = new System.Drawing.Size(35, 22);
this.saveButton.Text = "Save";
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
//
// openDialog
//
this.openDialog.FileName = "openFileDialog1";
//
// toTextButton
//
this.toTextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toTextButton.Image = ((System.Drawing.Image)(resources.GetObject("toTextButton.Image")));
this.toTextButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toTextButton.Name = "toTextButton";
this.toTextButton.Size = new System.Drawing.Size(48, 22);
this.toTextButton.Text = "To Text";
this.toTextButton.Click += new System.EventHandler(this.toTextButton_Click);
//
// fromTextButton
//
this.fromTextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.fromTextButton.Image = ((System.Drawing.Image)(resources.GetObject("fromTextButton.Image")));
this.fromTextButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.fromTextButton.Name = "fromTextButton";
this.fromTextButton.Size = new System.Drawing.Size(60, 22);
this.fromTextButton.Text = "From Text";
this.fromTextButton.Click += new System.EventHandler(this.fromTextButton_Click);
//
// XmlForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(573, 338);
this.Controls.Add(this.splitContainer);
this.Controls.Add(this.statusBar);
this.Controls.Add(this.toolStrip);
this.Controls.Add(this.mainMenu);
this.MainMenuStrip = this.mainMenu;
this.Name = "XmlForm";
this.Text = "Form1";
this.mainMenu.ResumeLayout(false);
this.mainMenu.PerformLayout();
this.toolStrip.ResumeLayout(false);
this.toolStrip.PerformLayout();
this.statusBar.ResumeLayout(false);
this.statusBar.PerformLayout();
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel2.ResumeLayout(false);
this.splitContainer.ResumeLayout(false);
this.tabControl.ResumeLayout(false);
this.textPage.ResumeLayout(false);
this.textPage.PerformLayout();
this.dataPage.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
this.propertyPage.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip mainMenu;
private System.Windows.Forms.ToolStripMenuItem fileMenu;
private System.Windows.Forms.ToolStripMenuItem runMenuItem;
private System.Windows.Forms.ToolStrip toolStrip;
private System.Windows.Forms.ToolStripButton runButton;
private System.Windows.Forms.StatusStrip statusBar;
private System.Windows.Forms.SplitContainer splitContainer;
private System.Windows.Forms.TreeView treeView;
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage textPage;
private System.Windows.Forms.TextBox textBox;
private System.Windows.Forms.TabPage dataPage;
private System.Windows.Forms.DataGridView dataGrid;
private System.Windows.Forms.TabPage propertyPage;
private System.Windows.Forms.PropertyGrid propertyGrid;
private System.Windows.Forms.ToolStripStatusLabel statusLabel;
private System.Windows.Forms.ToolStripMenuItem nextToolStripMenuItem;
private System.Windows.Forms.ToolStripButton nextButton;
private System.Windows.Forms.ToolStripMenuItem openMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveMenuItem;
private System.Windows.Forms.ToolStripButton openButton;
private System.Windows.Forms.ToolStripButton saveButton;
private System.Windows.Forms.OpenFileDialog openDialog;
private System.Windows.Forms.SaveFileDialog saveDialog;
private System.Windows.Forms.ToolStripButton toTextButton;
private System.Windows.Forms.ToolStripButton fromTextButton;
}
}