1 | namespace HeuristicLab.Clients.Hive.Views {
|
---|
2 | partial class ItemTreeView {
|
---|
3 | /// <summary>
|
---|
4 | /// Required designer variable.
|
---|
5 | /// </summary>
|
---|
6 | private System.ComponentModel.IContainer components = null;
|
---|
7 |
|
---|
8 | /// <summary>
|
---|
9 | /// Clean up any resources being used.
|
---|
10 | /// </summary>
|
---|
11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
12 | protected override void Dispose(bool disposing) {
|
---|
13 | if (disposing && (components != null)) {
|
---|
14 | components.Dispose();
|
---|
15 | }
|
---|
16 | base.Dispose(disposing);
|
---|
17 | }
|
---|
18 |
|
---|
19 | #region Component Designer generated code
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Required method for Designer support - do not modify
|
---|
23 | /// the contents of this method with the code editor.
|
---|
24 | /// </summary>
|
---|
25 | private void InitializeComponent() {
|
---|
26 | this.components = new System.ComponentModel.Container();
|
---|
27 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
28 | this.treeView = new System.Windows.Forms.TreeView();
|
---|
29 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
30 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
31 | this.detailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
32 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
33 | this.splitContainer.Panel1.SuspendLayout();
|
---|
34 | this.splitContainer.Panel2.SuspendLayout();
|
---|
35 | this.splitContainer.SuspendLayout();
|
---|
36 | this.detailsGroupBox.SuspendLayout();
|
---|
37 | this.SuspendLayout();
|
---|
38 | //
|
---|
39 | // splitContainer
|
---|
40 | //
|
---|
41 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
42 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
43 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
44 | this.splitContainer.Name = "splitContainer";
|
---|
45 | //
|
---|
46 | // splitContainer.Panel1
|
---|
47 | //
|
---|
48 | this.splitContainer.Panel1.Controls.Add(this.treeView);
|
---|
49 | //
|
---|
50 | // splitContainer.Panel2
|
---|
51 | //
|
---|
52 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
53 | this.splitContainer.Size = new System.Drawing.Size(624, 463);
|
---|
54 | this.splitContainer.SplitterDistance = 200;
|
---|
55 | this.splitContainer.TabIndex = 0;
|
---|
56 | //
|
---|
57 | // treeView
|
---|
58 | //
|
---|
59 | this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
60 | this.treeView.HideSelection = false;
|
---|
61 | this.treeView.ImageIndex = 0;
|
---|
62 | this.treeView.ImageList = this.imageList;
|
---|
63 | this.treeView.Location = new System.Drawing.Point(0, 0);
|
---|
64 | this.treeView.Name = "treeView";
|
---|
65 | this.treeView.SelectedImageIndex = 0;
|
---|
66 | this.treeView.Size = new System.Drawing.Size(200, 463);
|
---|
67 | this.treeView.TabIndex = 0;
|
---|
68 | this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
|
---|
69 | this.treeView.DoubleClick += new System.EventHandler(this.treeView_DoubleClick);
|
---|
70 | //
|
---|
71 | // imageList
|
---|
72 | //
|
---|
73 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
74 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
75 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
76 | //
|
---|
77 | // detailsGroupBox
|
---|
78 | //
|
---|
79 | this.detailsGroupBox.Controls.Add(this.detailsViewHost);
|
---|
80 | this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
81 | this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
82 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
83 | this.detailsGroupBox.Size = new System.Drawing.Size(420, 463);
|
---|
84 | this.detailsGroupBox.TabIndex = 1;
|
---|
85 | this.detailsGroupBox.TabStop = false;
|
---|
86 | this.detailsGroupBox.Text = "Details";
|
---|
87 | //
|
---|
88 | // detailsViewHost
|
---|
89 | //
|
---|
90 | this.detailsViewHost.Caption = "View";
|
---|
91 | this.detailsViewHost.Content = null;
|
---|
92 | this.detailsViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
93 | this.detailsViewHost.Enabled = false;
|
---|
94 | this.detailsViewHost.Location = new System.Drawing.Point(3, 16);
|
---|
95 | this.detailsViewHost.Name = "detailsViewHost";
|
---|
96 | this.detailsViewHost.ReadOnly = false;
|
---|
97 | this.detailsViewHost.Size = new System.Drawing.Size(414, 444);
|
---|
98 | this.detailsViewHost.TabIndex = 0;
|
---|
99 | this.detailsViewHost.ViewsLabelVisible = true;
|
---|
100 | this.detailsViewHost.ViewType = null;
|
---|
101 | //
|
---|
102 | // ItemTreeView
|
---|
103 | //
|
---|
104 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
105 | this.Controls.Add(this.splitContainer);
|
---|
106 | this.Name = "ItemTreeView";
|
---|
107 | this.Size = new System.Drawing.Size(624, 463);
|
---|
108 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
109 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
110 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
111 | this.splitContainer.ResumeLayout(false);
|
---|
112 | this.detailsGroupBox.ResumeLayout(false);
|
---|
113 | this.ResumeLayout(false);
|
---|
114 |
|
---|
115 | }
|
---|
116 |
|
---|
117 | #endregion
|
---|
118 |
|
---|
119 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
120 | private System.Windows.Forms.TreeView treeView;
|
---|
121 | private MainForm.WindowsForms.ViewHost detailsViewHost;
|
---|
122 | private System.Windows.Forms.ImageList imageList;
|
---|
123 | private System.Windows.Forms.GroupBox detailsGroupBox;
|
---|
124 | }
|
---|
125 | }
|
---|