Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ItemTreeViews/3.3/Views/ItemCollectionTreeView.designer.cs @ 14335

Last change on this file since 14335 was 14335, checked in by bwerth, 8 years ago

#2684 initial commit of TreeView

File size: 11.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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
22using System.Windows.Forms;
23
24namespace HeuristicLab.ItemTreeViews.Views {
25  partial class ItemCollectionTreeView<T> {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    #region Windows Form Designer generated code
32
33    /// <summary>
34    /// Required method for Designer support - do not modify
35    /// the contents of this method with the code editor.
36    /// </summary>
37    private void InitializeComponent() {
38      this.components = new System.ComponentModel.Container();
39      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ItemCollectionTreeView));
40      this.splitContainer = new System.Windows.Forms.SplitContainer();
41      this.itemsTreeView = new System.Windows.Forms.TreeView();
42      this.showDetailsCheckBox = new System.Windows.Forms.CheckBox();
43      this.sortDescendingButton = new System.Windows.Forms.Button();
44      this.sortAscendingButton = new System.Windows.Forms.Button();
45      this.removeButton = new System.Windows.Forms.Button();
46      this.addButton = new System.Windows.Forms.Button();
47      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
48      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
49      this.imageList = new System.Windows.Forms.ImageList(this.components);
50      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
51      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
52      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
53      this.splitContainer.Panel1.SuspendLayout();
54      this.splitContainer.Panel2.SuspendLayout();
55      this.splitContainer.SuspendLayout();
56      this.detailsGroupBox.SuspendLayout();
57      this.itemsGroupBox.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // splitContainer
61      //
62      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
63      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
64      this.splitContainer.Location = new System.Drawing.Point(3, 16);
65      this.splitContainer.Name = "splitContainer";
66      //
67      // splitContainer.Panel1
68      //
69      this.splitContainer.Panel1.Controls.Add(this.itemsTreeView);
70      this.splitContainer.Panel1.Controls.Add(this.showDetailsCheckBox);
71      this.splitContainer.Panel1.Controls.Add(this.sortDescendingButton);
72      this.splitContainer.Panel1.Controls.Add(this.sortAscendingButton);
73      this.splitContainer.Panel1.Controls.Add(this.removeButton);
74      this.splitContainer.Panel1.Controls.Add(this.addButton);
75      this.splitContainer.Panel1MinSize = 100;
76      //
77      // splitContainer.Panel2
78      //
79      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
80      this.splitContainer.Size = new System.Drawing.Size(526, 364);
81      this.splitContainer.SplitterDistance = 250;
82      this.splitContainer.TabIndex = 0;
83      //
84      // itemsTreeView
85      //
86      this.itemsTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
87            | System.Windows.Forms.AnchorStyles.Left)
88            | System.Windows.Forms.AnchorStyles.Right)));
89      this.itemsTreeView.Location = new System.Drawing.Point(3, 27);
90      this.itemsTreeView.Name = "itemsTreeView";
91      this.itemsTreeView.Size = new System.Drawing.Size(241, 329);
92      this.itemsTreeView.TabIndex = 7;
93      //
94      // showDetailsCheckBox
95      //
96      this.showDetailsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
97      this.showDetailsCheckBox.Checked = true;
98      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
99      this.showDetailsCheckBox.Image = ((System.Drawing.Image)(resources.GetObject("showDetailsCheckBox.Image")));
100      this.showDetailsCheckBox.Location = new System.Drawing.Point(123, 3);
101      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
102      this.showDetailsCheckBox.Size = new System.Drawing.Size(24, 24);
103      this.showDetailsCheckBox.TabIndex = 4;
104      this.toolTip.SetToolTip(this.showDetailsCheckBox, "Show/Hide Details");
105      this.showDetailsCheckBox.UseVisualStyleBackColor = true;
106      this.showDetailsCheckBox.CheckedChanged += new System.EventHandler(this.showDetailsCheckBox_CheckedChanged);
107      //
108      // sortDescendingButton
109      //
110      this.sortDescendingButton.Enabled = false;
111      this.sortDescendingButton.Image = ((System.Drawing.Image)(resources.GetObject("sortDescendingButton.Image")));
112      this.sortDescendingButton.Location = new System.Drawing.Point(33, 3);
113      this.sortDescendingButton.Name = "sortDescendingButton";
114      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
115      this.sortDescendingButton.TabIndex = 1;
116      this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
117      this.sortDescendingButton.UseVisualStyleBackColor = true;
118      this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
119      //
120      // sortAscendingButton
121      //
122      this.sortAscendingButton.Enabled = false;
123      this.sortAscendingButton.Image = ((System.Drawing.Image)(resources.GetObject("sortAscendingButton.Image")));
124      this.sortAscendingButton.Location = new System.Drawing.Point(63, 3);
125      this.sortAscendingButton.Name = "sortAscendingButton";
126      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
127      this.sortAscendingButton.TabIndex = 2;
128      this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
129      this.sortAscendingButton.UseVisualStyleBackColor = true;
130      this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
131      //
132      // removeButton
133      //
134      this.removeButton.Enabled = false;
135      this.removeButton.Image = ((System.Drawing.Image)(resources.GetObject("removeButton.Image")));
136      this.removeButton.Location = new System.Drawing.Point(93, 3);
137      this.removeButton.Name = "removeButton";
138      this.removeButton.Size = new System.Drawing.Size(24, 24);
139      this.removeButton.TabIndex = 3;
140      this.toolTip.SetToolTip(this.removeButton, "Remove");
141      this.removeButton.UseVisualStyleBackColor = true;
142      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
143      //
144      // addButton
145      //
146      this.addButton.Image = ((System.Drawing.Image)(resources.GetObject("addButton.Image")));
147      this.addButton.Location = new System.Drawing.Point(3, 3);
148      this.addButton.Name = "addButton";
149      this.addButton.Size = new System.Drawing.Size(24, 24);
150      this.addButton.TabIndex = 0;
151      this.toolTip.SetToolTip(this.addButton, "Add");
152      this.addButton.UseVisualStyleBackColor = true;
153      this.addButton.Click += new System.EventHandler(this.addButton_Click);
154      //
155      // detailsGroupBox
156      //
157      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
158            | System.Windows.Forms.AnchorStyles.Left)
159            | System.Windows.Forms.AnchorStyles.Right)));
160      this.detailsGroupBox.Controls.Add(this.viewHost);
161      this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
162      this.detailsGroupBox.Name = "detailsGroupBox";
163      this.detailsGroupBox.Size = new System.Drawing.Size(266, 335);
164      this.detailsGroupBox.TabIndex = 0;
165      this.detailsGroupBox.TabStop = false;
166      this.detailsGroupBox.Text = "Details";
167      //
168      // viewHost
169      //
170      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
171            | System.Windows.Forms.AnchorStyles.Left)
172            | System.Windows.Forms.AnchorStyles.Right)));
173      this.viewHost.Caption = "View";
174      this.viewHost.Content = null;
175      this.viewHost.Enabled = false;
176      this.viewHost.Location = new System.Drawing.Point(6, 19);
177      this.viewHost.Name = "viewHost";
178      this.viewHost.ReadOnly = false;
179      this.viewHost.Size = new System.Drawing.Size(254, 310);
180      this.viewHost.TabIndex = 0;
181      this.viewHost.ViewsLabelVisible = true;
182      this.viewHost.ViewType = null;
183      //
184      // imageList
185      //
186      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
187      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
188      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
189      //
190      // itemsGroupBox
191      //
192      this.itemsGroupBox.Controls.Add(this.splitContainer);
193      this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
194      this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
195      this.itemsGroupBox.Name = "itemsGroupBox";
196      this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
197      this.itemsGroupBox.TabIndex = 0;
198      this.itemsGroupBox.TabStop = false;
199      this.itemsGroupBox.Text = "Items";
200      //
201      // ItemCollectionTreeView
202      //
203      this.Controls.Add(this.itemsGroupBox);
204      this.Name = "ItemCollectionTreeView";
205      this.Size = new System.Drawing.Size(532, 383);
206      this.splitContainer.Panel1.ResumeLayout(false);
207      this.splitContainer.Panel2.ResumeLayout(false);
208      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
209      this.splitContainer.ResumeLayout(false);
210      this.detailsGroupBox.ResumeLayout(false);
211      this.itemsGroupBox.ResumeLayout(false);
212      this.ResumeLayout(false);
213
214    }
215
216    #endregion
217
218    protected System.Windows.Forms.SplitContainer splitContainer;
219    protected GroupBox itemsGroupBox;
220    protected GroupBox detailsGroupBox;
221    protected Button addButton;
222    protected Button removeButton;
223    protected ToolTip toolTip;
224    protected ImageList imageList;
225    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
226    protected Button sortAscendingButton;
227    protected Button sortDescendingButton;
228    protected CheckBox showDetailsCheckBox;
229    private TreeView itemsTreeView;
230  }
231}
Note: See TracBrowser for help on using the repository browser.