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();
|
|
|
|
|
|
this.treeView1 = new System.Windows.Forms.TreeView();
|
2017-09-20 11:13:31 -07:00
|
|
|
|
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
|
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();
|
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
|
//
|
|
|
|
|
|
// splitContainer1
|
|
|
|
|
|
//
|
|
|
|
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
2017-09-20 13:06:46 -07:00
|
|
|
|
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.treeView1);
|
|
|
|
|
|
//
|
|
|
|
|
|
// splitContainer1.Panel2
|
|
|
|
|
|
//
|
|
|
|
|
|
this.splitContainer1.Panel2.Controls.Add(this.propertyGrid1);
|
2017-09-20 12:06:53 -07:00
|
|
|
|
this.splitContainer1.Size = new System.Drawing.Size(440, 632);
|
|
|
|
|
|
this.splitContainer1.SplitterDistance = 169;
|
2017-09-20 11:13:31 -07:00
|
|
|
|
this.splitContainer1.SplitterWidth = 3;
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.splitContainer1.TabIndex = 0;
|
|
|
|
|
|
//
|
|
|
|
|
|
// treeView1
|
|
|
|
|
|
//
|
|
|
|
|
|
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
2017-09-20 11:13:31 -07:00
|
|
|
|
this.treeView1.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText;
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.treeView1.FullRowSelect = true;
|
|
|
|
|
|
this.treeView1.HideSelection = false;
|
|
|
|
|
|
this.treeView1.Location = new System.Drawing.Point(0, 0);
|
2017-09-20 13:06:46 -07:00
|
|
|
|
this.treeView1.Margin = new System.Windows.Forms.Padding(2);
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.treeView1.Name = "treeView1";
|
2017-09-20 12:06:53 -07:00
|
|
|
|
this.treeView1.Size = new System.Drawing.Size(169, 632);
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.treeView1.TabIndex = 0;
|
2017-09-20 11:13:31 -07:00
|
|
|
|
this.treeView1.DrawNode += new System.Windows.Forms.DrawTreeNodeEventHandler(this.treeView1_DrawNode);
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
|
|
|
|
|
|
//
|
2017-09-20 11:13:31 -07:00
|
|
|
|
// propertyGrid1
|
|
|
|
|
|
//
|
|
|
|
|
|
this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
|
this.propertyGrid1.LineColor = System.Drawing.SystemColors.ControlDark;
|
2017-09-20 13:06:46 -07:00
|
|
|
|
this.propertyGrid1.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
|
this.propertyGrid1.Margin = new System.Windows.Forms.Padding(2);
|
2017-09-20 11:13:31 -07:00
|
|
|
|
this.propertyGrid1.Name = "propertyGrid1";
|
2017-09-20 13:06:46 -07:00
|
|
|
|
this.propertyGrid1.Size = new System.Drawing.Size(268, 632);
|
2017-09-20 11:13:31 -07:00
|
|
|
|
this.propertyGrid1.TabIndex = 0;
|
|
|
|
|
|
this.propertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid1_PropertyValueChanged);
|
|
|
|
|
|
//
|
2017-09-18 10:05:04 -07:00
|
|
|
|
// InspectForm
|
|
|
|
|
|
//
|
2017-09-20 11:13:31 -07:00
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2017-09-20 12:06:53 -07:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(440, 632);
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.Controls.Add(this.splitContainer1);
|
2017-09-20 13:06:46 -07:00
|
|
|
|
this.Margin = new System.Windows.Forms.Padding(2);
|
2017-09-18 10:05:04 -07:00
|
|
|
|
this.Name = "InspectForm";
|
|
|
|
|
|
this.Text = "InspectForm";
|
|
|
|
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
|
|
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
|
|
|
|
this.splitContainer1.ResumeLayout(false);
|
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
|
|
|
|
private System.Windows.Forms.TreeView treeView1;
|
|
|
|
|
|
private System.Windows.Forms.PropertyGrid propertyGrid1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|