namespace TIProDevExtension.ValueEditor { partial class XmlEditor { /// /// 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() { this.okButton = new System.Windows.Forms.Button(); this.reviewButton = new System.Windows.Forms.Button(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.editableTabPage = new System.Windows.Forms.TabPage(); this.xmlTextBox = new System.Windows.Forms.TextBox(); this.formattedTabPage = new System.Windows.Forms.TabPage(); this.webBrowser1 = new System.Windows.Forms.WebBrowser(); this.statusTextBox = new System.Windows.Forms.TextBox(); this.cancelButton = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.tabControl1.SuspendLayout(); this.editableTabPage.SuspendLayout(); this.formattedTabPage.SuspendLayout(); this.SuspendLayout(); // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.okButton.Location = new System.Drawing.Point(12, 626); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(150, 42); this.okButton.TabIndex = 0; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // reviewButton // this.reviewButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.reviewButton.Location = new System.Drawing.Point(987, 626); this.reviewButton.Name = "reviewButton"; this.reviewButton.Size = new System.Drawing.Size(150, 42); this.reviewButton.TabIndex = 1; this.reviewButton.Text = "Review"; this.reviewButton.UseVisualStyleBackColor = true; this.reviewButton.Click += new System.EventHandler(this.reviewButton_Click); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(3, 3); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.xmlTextBox); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.statusTextBox); this.splitContainer1.Size = new System.Drawing.Size(1103, 555); this.splitContainer1.SplitterDistance = 298; this.splitContainer1.TabIndex = 2; // // tabControl1 // this.tabControl1.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.tabControl1.Controls.Add(this.editableTabPage); this.tabControl1.Controls.Add(this.formattedTabPage); this.tabControl1.Location = new System.Drawing.Point(12, 12); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(1125, 608); this.tabControl1.TabIndex = 1; this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); // // editableTabPage // this.editableTabPage.Controls.Add(this.splitContainer1); this.editableTabPage.Location = new System.Drawing.Point(8, 39); this.editableTabPage.Name = "editableTabPage"; this.editableTabPage.Padding = new System.Windows.Forms.Padding(3); this.editableTabPage.Size = new System.Drawing.Size(1109, 561); this.editableTabPage.TabIndex = 0; this.editableTabPage.Text = "Editable"; this.editableTabPage.UseVisualStyleBackColor = true; // // xmlTextBox // this.xmlTextBox.AcceptsReturn = true; this.xmlTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.xmlTextBox.Location = new System.Drawing.Point(0, 0); this.xmlTextBox.Multiline = true; this.xmlTextBox.Name = "xmlTextBox"; this.xmlTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.xmlTextBox.Size = new System.Drawing.Size(1103, 298); this.xmlTextBox.TabIndex = 0; this.xmlTextBox.TextChanged += new System.EventHandler(this.xmlTextBox_TextChanged); // // formattedTabPage // this.formattedTabPage.Controls.Add(this.webBrowser1); this.formattedTabPage.Location = new System.Drawing.Point(8, 39); this.formattedTabPage.Name = "formattedTabPage"; this.formattedTabPage.Padding = new System.Windows.Forms.Padding(3); this.formattedTabPage.Size = new System.Drawing.Size(1109, 280); this.formattedTabPage.TabIndex = 1; this.formattedTabPage.Text = "Formatted"; this.formattedTabPage.UseVisualStyleBackColor = true; // // webBrowser1 // this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill; this.webBrowser1.Location = new System.Drawing.Point(3, 3); this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20); this.webBrowser1.Name = "webBrowser1"; this.webBrowser1.Size = new System.Drawing.Size(1103, 274); this.webBrowser1.TabIndex = 4; // // statusTextBox // this.statusTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.statusTextBox.Location = new System.Drawing.Point(0, 0); this.statusTextBox.Multiline = true; this.statusTextBox.Name = "statusTextBox"; this.statusTextBox.ReadOnly = true; this.statusTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.statusTextBox.Size = new System.Drawing.Size(1103, 253); this.statusTextBox.TabIndex = 0; // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(168, 626); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(150, 42); this.cancelButton.TabIndex = 3; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // XmlEditor // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(1149, 680); this.Controls.Add(this.tabControl1); this.Controls.Add(this.cancelButton); this.Controls.Add(this.reviewButton); this.Controls.Add(this.okButton); this.Name = "XmlEditor"; this.Text = "XmlEditor"; this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel1.PerformLayout(); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.Panel2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.tabControl1.ResumeLayout(false); this.editableTabPage.ResumeLayout(false); this.formattedTabPage.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button reviewButton; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.TextBox xmlTextBox; private System.Windows.Forms.TextBox statusTextBox; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.WebBrowser webBrowser1; private System.Windows.Forms.TabControl tabControl1; private System.Windows.Forms.TabPage editableTabPage; private System.Windows.Forms.TabPage formattedTabPage; } }