Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding.Views/3.3/ObjectSelectorDialog.Designer.cs @ 8524

Last change on this file since 8524 was 8524, checked in by jkarder, 12 years ago

#1853:

  • added problem instance selection to CreateExperimentDialog
  • adopted experiment creation
  • minor code improvements
File size: 6.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Encodings.ParameterConfigurationEncoding.Views {
23  partial class ObjectSelectorDialog<T> {
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.itemsListView = new System.Windows.Forms.ListView();
48      this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
49      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
50      this.typeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
51      this.cancelButton = new System.Windows.Forms.Button();
52      this.okButton = new System.Windows.Forms.Button();
53      this.SuspendLayout();
54      //
55      // itemsListView
56      //
57      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
58                  | System.Windows.Forms.AnchorStyles.Left)
59                  | System.Windows.Forms.AnchorStyles.Right)));
60      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
61            this.nameColumnHeader,
62            this.descriptionColumnHeader,
63            this.typeColumnHeader});
64      this.itemsListView.FullRowSelect = true;
65      this.itemsListView.HideSelection = false;
66      this.itemsListView.Location = new System.Drawing.Point(12, 12);
67      this.itemsListView.MultiSelect = false;
68      this.itemsListView.Name = "itemsListView";
69      this.itemsListView.Size = new System.Drawing.Size(653, 360);
70      this.itemsListView.TabIndex = 2;
71      this.itemsListView.UseCompatibleStateImageBehavior = false;
72      this.itemsListView.View = System.Windows.Forms.View.Details;
73      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
74      this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
75      //
76      // nameColumnHeader
77      //
78      this.nameColumnHeader.Text = "Name";
79      this.nameColumnHeader.Width = 91;
80      //
81      // descriptionColumnHeader
82      //
83      this.descriptionColumnHeader.Text = "Description";
84      this.descriptionColumnHeader.Width = 187;
85      //
86      // typeColumnHeader
87      //
88      this.typeColumnHeader.Text = "Type";
89      this.typeColumnHeader.Width = 240;
90      //
91      // cancelButton
92      //
93      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
94      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
95      this.cancelButton.Location = new System.Drawing.Point(590, 378);
96      this.cancelButton.Name = "cancelButton";
97      this.cancelButton.Size = new System.Drawing.Size(75, 23);
98      this.cancelButton.TabIndex = 5;
99      this.cancelButton.Text = "&Cancel";
100      this.cancelButton.UseVisualStyleBackColor = true;
101      //
102      // okButton
103      //
104      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
105      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
106      this.okButton.Enabled = false;
107      this.okButton.Location = new System.Drawing.Point(509, 378);
108      this.okButton.Name = "okButton";
109      this.okButton.Size = new System.Drawing.Size(75, 23);
110      this.okButton.TabIndex = 4;
111      this.okButton.Text = "&OK";
112      this.okButton.UseVisualStyleBackColor = true;
113      this.okButton.Click += new System.EventHandler(this.okButton_Click);
114      //
115      // ObjectSelectorDialog
116      //
117      this.AcceptButton = this.okButton;
118      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
119      this.CancelButton = this.cancelButton;
120      this.ClientSize = new System.Drawing.Size(677, 413);
121      this.Controls.Add(this.cancelButton);
122      this.Controls.Add(this.okButton);
123      this.Controls.Add(this.itemsListView);
124      this.Name = "ObjectSelectorDialog";
125      this.Text = "ObjectSelectorDialog";
126      this.Load += new System.EventHandler(this.ObjectSelectorDialog_Load);
127      this.Shown += new System.EventHandler(this.ObjectSelectorDialog_Shown);
128      this.ResumeLayout(false);
129
130    }
131
132    #endregion
133
134    private System.Windows.Forms.ListView itemsListView;
135    private System.Windows.Forms.ColumnHeader nameColumnHeader;
136    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
137    private System.Windows.Forms.ColumnHeader typeColumnHeader;
138    private System.Windows.Forms.Button cancelButton;
139    private System.Windows.Forms.Button okButton;
140  }
141}
Note: See TracBrowser for help on using the repository browser.