Free cookie consent management tool by TermsFeed Policy Generator

source: branches/NewItemDialog/HeuristicLab.Optimizer/3.3/NewItemDialog.Designer.cs @ 12184

Last change on this file since 12184 was 12184, checked in by pfleck, 9 years ago

#2025

  • Changed ListView to TreeView.
  • Added search bar, but is is not working yet.
File size: 9.7 KB
Line 
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
22namespace HeuristicLab.Optimizer {
23  partial class NewItemDialog {
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 Windows Form 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.components = new System.ComponentModel.Container();
48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewItemDialog));
49      this.okButton = new System.Windows.Forms.Button();
50      this.cancelButton = new System.Windows.Forms.Button();
51      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
52      this.searchLabel = new System.Windows.Forms.Label();
53      this.splitContainer = new System.Windows.Forms.SplitContainer();
54      this.searchTextBox = new System.Windows.Forms.TextBox();
55      this.typesTreeView = new System.Windows.Forms.TreeView();
56      this.imageList = new System.Windows.Forms.ImageList(this.components);
57      this.descriptionTextBox = new System.Windows.Forms.TextBox();
58      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
59      this.splitContainer.Panel1.SuspendLayout();
60      this.splitContainer.Panel2.SuspendLayout();
61      this.splitContainer.SuspendLayout();
62      this.SuspendLayout();
63      //
64      // okButton
65      //
66      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
68      this.okButton.Enabled = false;
69      this.okButton.Location = new System.Drawing.Point(456, 409);
70      this.okButton.Name = "okButton";
71      this.okButton.Size = new System.Drawing.Size(75, 23);
72      this.okButton.TabIndex = 2;
73      this.okButton.Text = "&OK";
74      this.okButton.UseVisualStyleBackColor = true;
75      this.okButton.Click += new System.EventHandler(this.okButton_Click);
76      //
77      // cancelButton
78      //
79      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
80      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
81      this.cancelButton.Location = new System.Drawing.Point(537, 409);
82      this.cancelButton.Name = "cancelButton";
83      this.cancelButton.Size = new System.Drawing.Size(75, 23);
84      this.cancelButton.TabIndex = 3;
85      this.cancelButton.Text = "&Cancel";
86      this.cancelButton.UseVisualStyleBackColor = true;
87      //
88      // searchLabel
89      //
90      this.searchLabel.Image = ((System.Drawing.Image)(resources.GetObject("searchLabel.Image")));
91      this.searchLabel.Location = new System.Drawing.Point(3, 3);
92      this.searchLabel.Name = "searchLabel";
93      this.searchLabel.Size = new System.Drawing.Size(20, 20);
94      this.searchLabel.TabIndex = 1;
95      this.toolTip.SetToolTip(this.searchLabel, "Enter string to search for items");
96      //
97      // splitContainer
98      //
99      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
100            | System.Windows.Forms.AnchorStyles.Left)
101            | System.Windows.Forms.AnchorStyles.Right)));
102      this.splitContainer.Location = new System.Drawing.Point(12, 12);
103      this.splitContainer.Name = "splitContainer";
104      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
105      //
106      // splitContainer.Panel1
107      //
108      this.splitContainer.Panel1.Controls.Add(this.searchLabel);
109      this.splitContainer.Panel1.Controls.Add(this.searchTextBox);
110      this.splitContainer.Panel1.Controls.Add(this.typesTreeView);
111      //
112      // splitContainer.Panel2
113      //
114      this.splitContainer.Panel2.Controls.Add(this.descriptionTextBox);
115      this.splitContainer.Size = new System.Drawing.Size(600, 391);
116      this.splitContainer.SplitterDistance = 292;
117      this.splitContainer.TabIndex = 4;
118      //
119      // searchTextBox
120      //
121      this.searchTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
122            | System.Windows.Forms.AnchorStyles.Right)));
123      this.searchTextBox.Location = new System.Drawing.Point(29, 3);
124      this.searchTextBox.Name = "searchTextBox";
125      this.searchTextBox.Size = new System.Drawing.Size(568, 20);
126      this.searchTextBox.TabIndex = 1;
127      this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged);
128      //
129      // typesTreeView
130      //
131      this.typesTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
132            | System.Windows.Forms.AnchorStyles.Left)
133            | System.Windows.Forms.AnchorStyles.Right)));
134      this.typesTreeView.HideSelection = false;
135      this.typesTreeView.ImageIndex = 0;
136      this.typesTreeView.ImageList = this.imageList;
137      this.typesTreeView.Location = new System.Drawing.Point(3, 29);
138      this.typesTreeView.Name = "typesTreeView";
139      this.typesTreeView.SelectedImageIndex = 0;
140      this.typesTreeView.ShowNodeToolTips = true;
141      this.typesTreeView.Size = new System.Drawing.Size(594, 260);
142      this.typesTreeView.TabIndex = 2;
143      this.typesTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.itemsTreeView_AfterSelect);
144      this.typesTreeView.VisibleChanged += new System.EventHandler(this.itemsTreeView_VisibleChanged);
145      this.typesTreeView.DoubleClick += new System.EventHandler(this.itemTreeView_DoubleClick);
146      //
147      // imageList
148      //
149      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
150      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
151      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
152      //
153      // descriptionTextBox
154      //
155      this.descriptionTextBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
156      this.descriptionTextBox.Location = new System.Drawing.Point(3, 3);
157      this.descriptionTextBox.Multiline = true;
158      this.descriptionTextBox.Name = "descriptionTextBox";
159      this.descriptionTextBox.ReadOnly = true;
160      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
161      this.descriptionTextBox.Size = new System.Drawing.Size(594, 89);
162      this.descriptionTextBox.TabIndex = 0;
163      //
164      // NewItemDialog
165      //
166      this.AcceptButton = this.okButton;
167      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
168      this.CancelButton = this.cancelButton;
169      this.ClientSize = new System.Drawing.Size(624, 444);
170      this.Controls.Add(this.splitContainer);
171      this.Controls.Add(this.cancelButton);
172      this.Controls.Add(this.okButton);
173      this.MaximizeBox = false;
174      this.MinimizeBox = false;
175      this.Name = "NewItemDialog";
176      this.ShowIcon = false;
177      this.ShowInTaskbar = false;
178      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
179      this.Text = "New Item";
180      this.TopMost = true;
181      this.Load += new System.EventHandler(this.NewItemDialog_Load);
182      this.Shown += new System.EventHandler(this.NewItemDialog_Shown);
183      this.splitContainer.Panel1.ResumeLayout(false);
184      this.splitContainer.Panel1.PerformLayout();
185      this.splitContainer.Panel2.ResumeLayout(false);
186      this.splitContainer.Panel2.PerformLayout();
187      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
188      this.splitContainer.ResumeLayout(false);
189      this.ResumeLayout(false);
190
191    }
192
193    #endregion
194
195    private System.Windows.Forms.Button okButton;
196    private System.Windows.Forms.Button cancelButton;
197    private System.Windows.Forms.ToolTip toolTip;
198    private System.Windows.Forms.SplitContainer splitContainer;
199    private System.Windows.Forms.TextBox descriptionTextBox;
200    private System.Windows.Forms.Label searchLabel;
201    private System.Windows.Forms.TextBox searchTextBox;
202    private System.Windows.Forms.TreeView typesTreeView;
203    private System.Windows.Forms.ImageList imageList;
204  }
205}
Note: See TracBrowser for help on using the repository browser.