[12379] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | namespace HeuristicLab.Optimization.BubbleChart {
|
---|
| 23 | partial class RecursiveDataItemView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
| 47 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 48 | this.listView = new System.Windows.Forms.ListView();
|
---|
| 49 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[12381] | 50 | this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
| 51 | this.valueColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
| 52 | this.dataGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 53 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 54 | this.dataChildrenSplitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 55 | this.treeView = new System.Windows.Forms.TreeView();
|
---|
[12379] | 56 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 57 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
| 58 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 59 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 60 | this.splitContainer.SuspendLayout();
|
---|
[12381] | 61 | this.dataGroupBox.SuspendLayout();
|
---|
| 62 | this.detailsGroupBox.SuspendLayout();
|
---|
| 63 | ((System.ComponentModel.ISupportInitialize)(this.dataChildrenSplitContainer)).BeginInit();
|
---|
| 64 | this.dataChildrenSplitContainer.Panel1.SuspendLayout();
|
---|
| 65 | this.dataChildrenSplitContainer.Panel2.SuspendLayout();
|
---|
| 66 | this.dataChildrenSplitContainer.SuspendLayout();
|
---|
[12379] | 67 | this.SuspendLayout();
|
---|
| 68 | //
|
---|
| 69 | // nameTextBox
|
---|
| 70 | //
|
---|
| 71 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 72 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
[12381] | 73 | this.nameTextBox.Size = new System.Drawing.Size(459, 20);
|
---|
[12379] | 74 | //
|
---|
[12381] | 75 | // infoLabel
|
---|
| 76 | //
|
---|
| 77 | this.infoLabel.Location = new System.Drawing.Point(523, 3);
|
---|
| 78 | //
|
---|
[12379] | 79 | // splitContainer
|
---|
| 80 | //
|
---|
[12381] | 81 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 82 | this.splitContainer.Location = new System.Drawing.Point(3, 16);
|
---|
[12379] | 83 | this.splitContainer.Name = "splitContainer";
|
---|
| 84 | //
|
---|
| 85 | // splitContainer.Panel1
|
---|
| 86 | //
|
---|
[12381] | 87 | this.splitContainer.Panel1.Controls.Add(this.dataChildrenSplitContainer);
|
---|
[12379] | 88 | //
|
---|
| 89 | // splitContainer.Panel2
|
---|
| 90 | //
|
---|
[12381] | 91 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
| 92 | this.splitContainer.Size = new System.Drawing.Size(527, 297);
|
---|
| 93 | this.splitContainer.SplitterDistance = 170;
|
---|
[12379] | 94 | this.splitContainer.TabIndex = 3;
|
---|
| 95 | //
|
---|
| 96 | // listView
|
---|
| 97 | //
|
---|
[12381] | 98 | this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 99 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 100 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 101 | this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 102 | this.nameColumnHeader,
|
---|
| 103 | this.valueColumnHeader});
|
---|
| 104 | this.listView.FullRowSelect = true;
|
---|
| 105 | this.listView.HideSelection = false;
|
---|
| 106 | this.listView.Location = new System.Drawing.Point(3, 3);
|
---|
[12379] | 107 | this.listView.MultiSelect = false;
|
---|
| 108 | this.listView.Name = "listView";
|
---|
[12381] | 109 | this.listView.Size = new System.Drawing.Size(160, 185);
|
---|
| 110 | this.listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
---|
[12379] | 111 | this.listView.TabIndex = 0;
|
---|
| 112 | this.listView.UseCompatibleStateImageBehavior = false;
|
---|
[12381] | 113 | this.listView.View = System.Windows.Forms.View.Details;
|
---|
[12379] | 114 | this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
|
---|
| 115 | //
|
---|
| 116 | // viewHost
|
---|
| 117 | //
|
---|
[12381] | 118 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 119 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 120 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[12379] | 121 | this.viewHost.Caption = "View";
|
---|
| 122 | this.viewHost.Content = null;
|
---|
| 123 | this.viewHost.Enabled = false;
|
---|
[12381] | 124 | this.viewHost.Location = new System.Drawing.Point(6, 19);
|
---|
[12379] | 125 | this.viewHost.Name = "viewHost";
|
---|
| 126 | this.viewHost.ReadOnly = false;
|
---|
[12381] | 127 | this.viewHost.Size = new System.Drawing.Size(334, 265);
|
---|
[12379] | 128 | this.viewHost.TabIndex = 0;
|
---|
| 129 | this.viewHost.ViewsLabelVisible = true;
|
---|
| 130 | this.viewHost.ViewType = null;
|
---|
| 131 | //
|
---|
[12381] | 132 | // nameColumnHeader
|
---|
| 133 | //
|
---|
| 134 | this.nameColumnHeader.Text = "Name";
|
---|
| 135 | //
|
---|
| 136 | // valueColumnHeader
|
---|
| 137 | //
|
---|
| 138 | this.valueColumnHeader.Text = "Value";
|
---|
| 139 | //
|
---|
| 140 | // dataGroupBox
|
---|
| 141 | //
|
---|
| 142 | this.dataGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 143 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 144 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 145 | this.dataGroupBox.Controls.Add(this.splitContainer);
|
---|
| 146 | this.dataGroupBox.Location = new System.Drawing.Point(6, 26);
|
---|
| 147 | this.dataGroupBox.Name = "dataGroupBox";
|
---|
| 148 | this.dataGroupBox.Size = new System.Drawing.Size(533, 316);
|
---|
| 149 | this.dataGroupBox.TabIndex = 4;
|
---|
| 150 | this.dataGroupBox.TabStop = false;
|
---|
| 151 | this.dataGroupBox.Text = "Data && Children";
|
---|
| 152 | //
|
---|
| 153 | // detailsGroupBox
|
---|
| 154 | //
|
---|
| 155 | this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 156 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 157 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 158 | this.detailsGroupBox.Controls.Add(this.viewHost);
|
---|
| 159 | this.detailsGroupBox.Location = new System.Drawing.Point(4, 4);
|
---|
| 160 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
| 161 | this.detailsGroupBox.Size = new System.Drawing.Size(346, 290);
|
---|
| 162 | this.detailsGroupBox.TabIndex = 1;
|
---|
| 163 | this.detailsGroupBox.TabStop = false;
|
---|
| 164 | this.detailsGroupBox.Text = "Details";
|
---|
| 165 | //
|
---|
| 166 | // dataChildrenSplitContainer
|
---|
| 167 | //
|
---|
| 168 | this.dataChildrenSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 169 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 170 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 171 | this.dataChildrenSplitContainer.Location = new System.Drawing.Point(4, 4);
|
---|
| 172 | this.dataChildrenSplitContainer.Name = "dataChildrenSplitContainer";
|
---|
| 173 | this.dataChildrenSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
| 174 | //
|
---|
| 175 | // dataChildrenSplitContainer.Panel1
|
---|
| 176 | //
|
---|
| 177 | this.dataChildrenSplitContainer.Panel1.Controls.Add(this.listView);
|
---|
| 178 | //
|
---|
| 179 | // dataChildrenSplitContainer.Panel2
|
---|
| 180 | //
|
---|
| 181 | this.dataChildrenSplitContainer.Panel2.Controls.Add(this.treeView);
|
---|
| 182 | this.dataChildrenSplitContainer.Size = new System.Drawing.Size(168, 290);
|
---|
| 183 | this.dataChildrenSplitContainer.SplitterDistance = 191;
|
---|
| 184 | this.dataChildrenSplitContainer.TabIndex = 1;
|
---|
| 185 | //
|
---|
| 186 | // treeView
|
---|
| 187 | //
|
---|
| 188 | this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 189 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 190 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 191 | this.treeView.Location = new System.Drawing.Point(3, 3);
|
---|
| 192 | this.treeView.Name = "treeView";
|
---|
| 193 | this.treeView.Size = new System.Drawing.Size(160, 89);
|
---|
| 194 | this.treeView.TabIndex = 0;
|
---|
| 195 | this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
|
---|
| 196 | //
|
---|
[12379] | 197 | // RecursiveDataItemView
|
---|
| 198 | //
|
---|
| 199 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 200 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[12381] | 201 | this.Controls.Add(this.dataGroupBox);
|
---|
[12379] | 202 | this.Name = "RecursiveDataItemView";
|
---|
[12381] | 203 | this.Size = new System.Drawing.Size(542, 345);
|
---|
[12379] | 204 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 205 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 206 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
[12381] | 207 | this.Controls.SetChildIndex(this.dataGroupBox, 0);
|
---|
[12379] | 208 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 209 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 210 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 211 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
| 212 | this.splitContainer.ResumeLayout(false);
|
---|
[12381] | 213 | this.dataGroupBox.ResumeLayout(false);
|
---|
| 214 | this.detailsGroupBox.ResumeLayout(false);
|
---|
| 215 | this.dataChildrenSplitContainer.Panel1.ResumeLayout(false);
|
---|
| 216 | this.dataChildrenSplitContainer.Panel2.ResumeLayout(false);
|
---|
| 217 | ((System.ComponentModel.ISupportInitialize)(this.dataChildrenSplitContainer)).EndInit();
|
---|
| 218 | this.dataChildrenSplitContainer.ResumeLayout(false);
|
---|
[12379] | 219 | this.ResumeLayout(false);
|
---|
| 220 | this.PerformLayout();
|
---|
| 221 |
|
---|
| 222 | }
|
---|
| 223 |
|
---|
| 224 | #endregion
|
---|
| 225 |
|
---|
| 226 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 227 | private System.Windows.Forms.ListView listView;
|
---|
| 228 | private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
|
---|
[12381] | 229 | private System.Windows.Forms.ColumnHeader nameColumnHeader;
|
---|
| 230 | private System.Windows.Forms.ColumnHeader valueColumnHeader;
|
---|
| 231 | private System.Windows.Forms.GroupBox detailsGroupBox;
|
---|
| 232 | private System.Windows.Forms.GroupBox dataGroupBox;
|
---|
| 233 | private System.Windows.Forms.SplitContainer dataChildrenSplitContainer;
|
---|
| 234 | private System.Windows.Forms.TreeView treeView;
|
---|
[12379] | 235 | }
|
---|
| 236 | }
|
---|