Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/Templates/HeuristicLab.VS2010Wizards/ParametersControl.Designer.cs @ 4184

Last change on this file since 4184 was 4181, checked in by abeham, 14 years ago

#567

  • Improved algorithm wizard design
File size: 8.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.VS2010Wizards {
23  partial class ParametersControl {
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      System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[] {
48            "SetSeedRandomly",
49            "Value",
50            "BoolValue",
51            "True if the random seed should be set to a random value, otherwise false.",
52            "new BoolValue(false)"}, -1);
53      System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
54            "Seed",
55            "Value",
56            "IntValue",
57            "The random seed used to initialize the new pseudo random number generator.",
58            ""}, -1);
59      System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[] {
60            "Analyzer",
61            "Value",
62            "MultiAnalyzer",
63            "The operator used to analyze each iteration.",
64            "new MultiAnalyzer()"}, -1);
65      this.parametersListView = new System.Windows.Forms.ListView();
66      this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
67      this.typeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
68      this.dataTypeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
69      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
70      this.defaultValueColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
71      this.downButton = new System.Windows.Forms.Button();
72      this.upButton = new System.Windows.Forms.Button();
73      this.removeButton = new System.Windows.Forms.Button();
74      this.addButton = new System.Windows.Forms.Button();
75      this.SuspendLayout();
76      //
77      // parametersListView
78      //
79      this.parametersListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80                  | System.Windows.Forms.AnchorStyles.Left)
81                  | System.Windows.Forms.AnchorStyles.Right)));
82      this.parametersListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
83            this.nameColumnHeader,
84            this.typeColumnHeader,
85            this.dataTypeColumnHeader,
86            this.descriptionColumnHeader,
87            this.defaultValueColumnHeader});
88      this.parametersListView.FullRowSelect = true;
89      this.parametersListView.GridLines = true;
90      this.parametersListView.HideSelection = false;
91      this.parametersListView.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
92            listViewItem4,
93            listViewItem5,
94            listViewItem6});
95      this.parametersListView.Location = new System.Drawing.Point(35, 3);
96      this.parametersListView.MultiSelect = false;
97      this.parametersListView.Name = "parametersListView";
98      this.parametersListView.Size = new System.Drawing.Size(701, 250);
99      this.parametersListView.TabIndex = 2;
100      this.parametersListView.UseCompatibleStateImageBehavior = false;
101      this.parametersListView.View = System.Windows.Forms.View.Details;
102      this.parametersListView.SelectedIndexChanged += new System.EventHandler(this.parametersListView_SelectedIndexChanged);
103      this.parametersListView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.parametersListView_MouseDoubleClick);
104      //
105      // nameColumnHeader
106      //
107      this.nameColumnHeader.Text = "Name";
108      this.nameColumnHeader.Width = 133;
109      //
110      // typeColumnHeader
111      //
112      this.typeColumnHeader.Text = "Type";
113      //
114      // dataTypeColumnHeader
115      //
116      this.dataTypeColumnHeader.Text = "Data Type";
117      this.dataTypeColumnHeader.Width = 100;
118      //
119      // descriptionColumnHeader
120      //
121      this.descriptionColumnHeader.Text = "Description";
122      this.descriptionColumnHeader.Width = 275;
123      //
124      // defaultValueColumnHeader
125      //
126      this.defaultValueColumnHeader.Text = "Default Value";
127      this.defaultValueColumnHeader.Width = 129;
128      //
129      // downButton
130      //
131      this.downButton.Enabled = false;
132      this.downButton.Image = global::HeuristicLab.VS2010Wizards.Properties.Resources.VS2008ImageLibrary_CommonElements_Objects_Arrow_Down;
133      this.downButton.Location = new System.Drawing.Point(3, 90);
134      this.downButton.Name = "downButton";
135      this.downButton.Size = new System.Drawing.Size(26, 26);
136      this.downButton.TabIndex = 4;
137      this.downButton.UseVisualStyleBackColor = true;
138      this.downButton.Click += new System.EventHandler(this.downButton_Click);
139      //
140      // upButton
141      //
142      this.upButton.Enabled = false;
143      this.upButton.Image = global::HeuristicLab.VS2010Wizards.Properties.Resources.VS2008ImageLibrary_CommonElements_Objects_Arrow_Up;
144      this.upButton.Location = new System.Drawing.Point(3, 61);
145      this.upButton.Name = "upButton";
146      this.upButton.Size = new System.Drawing.Size(26, 26);
147      this.upButton.TabIndex = 4;
148      this.upButton.UseVisualStyleBackColor = true;
149      this.upButton.Click += new System.EventHandler(this.upButton_Click);
150      //
151      // removeButton
152      //
153      this.removeButton.Enabled = false;
154      this.removeButton.Image = global::HeuristicLab.VS2010Wizards.Properties.Resources.VS2008ImageLibrary_Actions_Delete;
155      this.removeButton.Location = new System.Drawing.Point(3, 32);
156      this.removeButton.Name = "removeButton";
157      this.removeButton.Size = new System.Drawing.Size(26, 26);
158      this.removeButton.TabIndex = 4;
159      this.removeButton.UseVisualStyleBackColor = true;
160      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
161      //
162      // addButton
163      //
164      this.addButton.Image = global::HeuristicLab.VS2010Wizards.Properties.Resources.VS2008ImageLibrary_CommonElements_Actions_Add;
165      this.addButton.Location = new System.Drawing.Point(3, 3);
166      this.addButton.Name = "addButton";
167      this.addButton.Size = new System.Drawing.Size(26, 26);
168      this.addButton.TabIndex = 4;
169      this.addButton.UseVisualStyleBackColor = true;
170      this.addButton.Click += new System.EventHandler(this.addButton_Click);
171      //
172      // ParametersControl
173      //
174      this.Controls.Add(this.downButton);
175      this.Controls.Add(this.upButton);
176      this.Controls.Add(this.removeButton);
177      this.Controls.Add(this.addButton);
178      this.Controls.Add(this.parametersListView);
179      this.Name = "ParametersControl";
180      this.Size = new System.Drawing.Size(740, 256);
181      this.ResumeLayout(false);
182
183    }
184
185    #endregion
186
187    private System.Windows.Forms.ListView parametersListView;
188    private System.Windows.Forms.ColumnHeader nameColumnHeader;
189    private System.Windows.Forms.ColumnHeader dataTypeColumnHeader;
190    private System.Windows.Forms.ColumnHeader defaultValueColumnHeader;
191    private System.Windows.Forms.Button addButton;
192    private System.Windows.Forms.Button removeButton;
193    private System.Windows.Forms.Button upButton;
194    private System.Windows.Forms.Button downButton;
195    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
196    private System.Windows.Forms.ColumnHeader typeColumnHeader;
197  }
198}
Note: See TracBrowser for help on using the repository browser.