mattercontrol/MatterControl.Winforms/InspectForm.Designer.cs

300 lines
12 KiB
C#
Raw Normal View History

2017-09-18 10:05:04 -07:00
namespace MatterHackers.MatterControl
{
partial class InspectForm
{
/// <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();
2018-10-13 17:58:54 -07:00
this.debugTextWidget = new System.Windows.Forms.CheckBox();
2017-09-24 09:46:45 -07:00
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
2017-09-24 10:36:06 -07:00
this.aggTreeView = new System.Windows.Forms.TreeView();
2017-09-24 09:46:45 -07:00
this.tabPage2 = new System.Windows.Forms.TabPage();
2017-09-24 10:36:06 -07:00
this.sceneTreeView = new System.Windows.Forms.TreeView();
2018-10-13 17:58:54 -07:00
this.tabPage3 = new System.Windows.Forms.TabPage();
this.btnApply = new System.Windows.Forms.Button();
2018-10-13 17:58:54 -07:00
this.themeTreeView = new System.Windows.Forms.TreeView();
this.btnSaveTheme = new System.Windows.Forms.Button();
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.pipelineTree = new System.Windows.Forms.TreeView();
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
2017-09-18 10:05:04 -07:00
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
2017-09-24 09:46:45 -07:00
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
2018-10-13 17:58:54 -07:00
this.tabPage3.SuspendLayout();
this.tabPage4.SuspendLayout();
2017-09-18 10:05:04 -07:00
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Margin = new System.Windows.Forms.Padding(2);
2017-09-18 10:05:04 -07:00
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.debugTextWidget);
2017-09-24 09:46:45 -07:00
this.splitContainer1.Panel1.Controls.Add(this.tabControl1);
2017-09-18 10:05:04 -07:00
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.propertyGrid1);
this.splitContainer1.Size = new System.Drawing.Size(913, 632);
this.splitContainer1.SplitterDistance = 608;
this.splitContainer1.SplitterWidth = 3;
2017-09-18 10:05:04 -07:00
this.splitContainer1.TabIndex = 0;
//
2018-10-13 17:58:54 -07:00
// debugTextWidget
//
this.debugTextWidget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.debugTextWidget.AutoSize = true;
this.debugTextWidget.Location = new System.Drawing.Point(489, 3);
this.debugTextWidget.Name = "debugTextWidget";
this.debugTextWidget.Size = new System.Drawing.Size(116, 17);
this.debugTextWidget.TabIndex = 2;
this.debugTextWidget.Text = "Debug TextWidget";
this.debugTextWidget.UseVisualStyleBackColor = true;
this.debugTextWidget.CheckedChanged += new System.EventHandler(this.debugTextWidget_CheckedChanged);
//
2017-09-24 09:46:45 -07:00
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
2018-10-13 17:58:54 -07:00
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Controls.Add(this.tabPage4);
2017-09-24 09:46:45 -07:00
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(608, 632);
2017-09-24 09:46:45 -07:00
this.tabControl1.TabIndex = 1;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
2017-09-24 09:46:45 -07:00
//
// tabPage1
//
2017-09-24 10:36:06 -07:00
this.tabPage1.Controls.Add(this.aggTreeView);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
2017-09-24 09:46:45 -07:00
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(600, 606);
2017-09-24 09:46:45 -07:00
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "SystemWindow";
this.tabPage1.UseVisualStyleBackColor = true;
//
2017-09-24 10:36:06 -07:00
// aggTreeView
//
this.aggTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
this.aggTreeView.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText;
this.aggTreeView.FullRowSelect = true;
this.aggTreeView.HideSelection = false;
this.aggTreeView.Location = new System.Drawing.Point(3, 3);
this.aggTreeView.Margin = new System.Windows.Forms.Padding(2);
2017-09-24 10:36:06 -07:00
this.aggTreeView.Name = "aggTreeView";
this.aggTreeView.Size = new System.Drawing.Size(594, 600);
2017-09-24 10:36:06 -07:00
this.aggTreeView.TabIndex = 1;
this.aggTreeView.DrawNode += new System.Windows.Forms.DrawTreeNodeEventHandler(this.AggTreeView_DrawNode);
this.aggTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.AggTreeView_AfterSelect);
2017-09-24 09:46:45 -07:00
//
// tabPage2
//
2017-09-24 10:36:06 -07:00
this.tabPage2.Controls.Add(this.sceneTreeView);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
2017-09-24 09:46:45 -07:00
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
2018-10-13 17:58:54 -07:00
this.tabPage2.Size = new System.Drawing.Size(600, 606);
2017-09-24 09:46:45 -07:00
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Scene";
this.tabPage2.UseVisualStyleBackColor = true;
//
2017-09-24 10:36:06 -07:00
// sceneTreeView
2017-09-24 09:46:45 -07:00
//
2017-09-24 10:36:06 -07:00
this.sceneTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
this.sceneTreeView.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText;
this.sceneTreeView.FullRowSelect = true;
this.sceneTreeView.HideSelection = false;
this.sceneTreeView.Location = new System.Drawing.Point(3, 3);
this.sceneTreeView.Margin = new System.Windows.Forms.Padding(2);
2017-09-24 10:36:06 -07:00
this.sceneTreeView.Name = "sceneTreeView";
2018-10-13 17:58:54 -07:00
this.sceneTreeView.Size = new System.Drawing.Size(594, 600);
2017-09-24 10:36:06 -07:00
this.sceneTreeView.TabIndex = 2;
this.sceneTreeView.DrawNode += new System.Windows.Forms.DrawTreeNodeEventHandler(this.SceneTreeView_DrawNode);
this.sceneTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.SceneTreeView_AfterSelect);
2017-09-18 10:05:04 -07:00
//
2018-10-13 17:58:54 -07:00
// tabPage3
//
this.tabPage3.Controls.Add(this.btnApply);
this.tabPage3.Controls.Add(this.themeTreeView);
this.tabPage3.Controls.Add(this.btnSaveTheme);
this.tabPage3.Location = new System.Drawing.Point(4, 22);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
this.tabPage3.Size = new System.Drawing.Size(600, 606);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Theme";
this.tabPage3.UseVisualStyleBackColor = true;
//
// btnApply
//
this.btnApply.Location = new System.Drawing.Point(438, 322);
this.btnApply.Name = "btnApply";
this.btnApply.Size = new System.Drawing.Size(75, 23);
this.btnApply.TabIndex = 3;
this.btnApply.Text = "Apply";
this.btnApply.UseVisualStyleBackColor = true;
this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
//
2018-10-13 17:58:54 -07:00
// themeTreeView
//
this.themeTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.themeTreeView.FullRowSelect = true;
this.themeTreeView.HideSelection = false;
this.themeTreeView.Location = new System.Drawing.Point(3, 3);
this.themeTreeView.Margin = new System.Windows.Forms.Padding(2);
this.themeTreeView.Name = "themeTreeView";
this.themeTreeView.Size = new System.Drawing.Size(592, 253);
this.themeTreeView.TabIndex = 2;
//
// btnSaveTheme
//
this.btnSaveTheme.Location = new System.Drawing.Point(519, 322);
this.btnSaveTheme.Name = "btnSaveTheme";
this.btnSaveTheme.Size = new System.Drawing.Size(75, 23);
this.btnSaveTheme.TabIndex = 0;
this.btnSaveTheme.Text = "Save Theme";
this.btnSaveTheme.UseVisualStyleBackColor = true;
//
// propertyGrid1
//
this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
this.propertyGrid1.LineColor = System.Drawing.SystemColors.ControlDark;
this.propertyGrid1.Location = new System.Drawing.Point(0, 0);
this.propertyGrid1.Margin = new System.Windows.Forms.Padding(2);
this.propertyGrid1.Name = "propertyGrid1";
this.propertyGrid1.Size = new System.Drawing.Size(302, 632);
this.propertyGrid1.TabIndex = 0;
this.propertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid1_PropertyValueChanged);
//
// tabPage4
//
this.tabPage4.Controls.Add(this.textBox1);
this.tabPage4.Controls.Add(this.button1);
this.tabPage4.Controls.Add(this.pipelineTree);
this.tabPage4.Location = new System.Drawing.Point(4, 22);
this.tabPage4.Name = "tabPage4";
this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
this.tabPage4.Size = new System.Drawing.Size(600, 606);
this.tabPage4.TabIndex = 3;
this.tabPage4.Text = "tabPage4";
this.tabPage4.UseVisualStyleBackColor = true;
//
// pipelineTree
//
this.pipelineTree.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pipelineTree.FullRowSelect = true;
this.pipelineTree.HideSelection = false;
this.pipelineTree.Location = new System.Drawing.Point(2, 5);
this.pipelineTree.Margin = new System.Windows.Forms.Padding(2);
this.pipelineTree.Name = "pipelineTree";
this.pipelineTree.Size = new System.Drawing.Size(592, 253);
this.pipelineTree.TabIndex = 3;
//
// button1
//
this.button1.Location = new System.Drawing.Point(509, 263);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 4;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.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.textBox1.Location = new System.Drawing.Point(17, 292);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(567, 272);
this.textBox1.TabIndex = 5;
//
2017-09-18 10:05:04 -07:00
// InspectForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
2017-09-18 10:05:04 -07:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(913, 632);
2017-09-18 10:05:04 -07:00
this.Controls.Add(this.splitContainer1);
this.Margin = new System.Windows.Forms.Padding(2);
2017-09-18 10:05:04 -07:00
this.Name = "InspectForm";
this.Text = "InspectForm";
2018-10-13 17:58:54 -07:00
this.Load += new System.EventHandler(this.InspectForm_Load);
2017-09-18 10:05:04 -07:00
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
2017-09-18 10:05:04 -07:00
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
2017-09-24 09:46:45 -07:00
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
2018-10-13 17:58:54 -07:00
this.tabPage3.ResumeLayout(false);
this.tabPage4.ResumeLayout(false);
this.tabPage4.PerformLayout();
2017-09-18 10:05:04 -07:00
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.PropertyGrid propertyGrid1;
2017-09-24 09:46:45 -07:00
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
2017-09-24 10:36:06 -07:00
private System.Windows.Forms.TreeView aggTreeView;
2017-09-24 09:46:45 -07:00
private System.Windows.Forms.TabPage tabPage2;
2017-09-24 10:36:06 -07:00
private System.Windows.Forms.TreeView sceneTreeView;
private System.Windows.Forms.CheckBox debugTextWidget;
2018-10-13 17:58:54 -07:00
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.Button btnSaveTheme;
private System.Windows.Forms.TreeView themeTreeView;
private System.Windows.Forms.Button btnApply;
private System.Windows.Forms.TabPage tabPage4;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TreeView pipelineTree;
private System.Windows.Forms.TextBox textBox1;
2017-09-18 10:05:04 -07:00
}
2017-09-24 10:36:06 -07:00
}