Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimizer/3.3/NewItemDialog.Designer.cs @ 2790

Last change on this file since 2790 was 2790, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 6.1 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.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      this.okButton = new System.Windows.Forms.Button();
49      this.cancelButton = new System.Windows.Forms.Button();
50      this.itemsListView = new System.Windows.Forms.ListView();
51      this.nameColumnHeader = new System.Windows.Forms.ColumnHeader();
52      this.descriptioncolumnHeader = new System.Windows.Forms.ColumnHeader();
53      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
54      this.SuspendLayout();
55      //
56      // okButton
57      //
58      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
59      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
60      this.okButton.Enabled = false;
61      this.okButton.Location = new System.Drawing.Point(456, 409);
62      this.okButton.Name = "okButton";
63      this.okButton.Size = new System.Drawing.Size(75, 23);
64      this.okButton.TabIndex = 2;
65      this.okButton.Text = "&OK";
66      this.okButton.UseVisualStyleBackColor = true;
67      this.okButton.Click += new System.EventHandler(this.okButton_Click);
68      //
69      // cancelButton
70      //
71      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
72      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
73      this.cancelButton.Location = new System.Drawing.Point(537, 409);
74      this.cancelButton.Name = "cancelButton";
75      this.cancelButton.Size = new System.Drawing.Size(75, 23);
76      this.cancelButton.TabIndex = 3;
77      this.cancelButton.Text = "&Cancel";
78      this.cancelButton.UseVisualStyleBackColor = true;
79      //
80      // itemsListView
81      //
82      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
83                  | System.Windows.Forms.AnchorStyles.Left)
84                  | System.Windows.Forms.AnchorStyles.Right)));
85      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
86            this.nameColumnHeader,
87            this.descriptioncolumnHeader});
88      this.itemsListView.HideSelection = false;
89      this.itemsListView.Location = new System.Drawing.Point(12, 12);
90      this.itemsListView.MultiSelect = false;
91      this.itemsListView.Name = "itemsListView";
92      this.itemsListView.Size = new System.Drawing.Size(600, 391);
93      this.itemsListView.TabIndex = 1;
94      this.itemsListView.UseCompatibleStateImageBehavior = false;
95      this.itemsListView.View = System.Windows.Forms.View.Details;
96      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemTypesListView_SelectedIndexChanged);
97      this.itemsListView.DoubleClick += new System.EventHandler(this.itemTypesListView_DoubleClick);
98      //
99      // nameColumnHeader
100      //
101      this.nameColumnHeader.Text = "Name";
102      this.nameColumnHeader.Width = 91;
103      //
104      // descriptioncolumnHeader
105      //
106      this.descriptioncolumnHeader.Text = "Description";
107      this.descriptioncolumnHeader.Width = 190;
108      //
109      // NewItemDialog
110      //
111      this.AcceptButton = this.okButton;
112      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
113      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
114      this.CancelButton = this.cancelButton;
115      this.ClientSize = new System.Drawing.Size(624, 444);
116      this.Controls.Add(this.itemsListView);
117      this.Controls.Add(this.cancelButton);
118      this.Controls.Add(this.okButton);
119      this.MaximizeBox = false;
120      this.MinimizeBox = false;
121      this.Name = "NewItemDialog";
122      this.ShowIcon = false;
123      this.ShowInTaskbar = false;
124      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
125      this.Text = "New Item";
126      this.TopMost = true;
127      this.Load += new System.EventHandler(this.NewItemDialog_Load);
128      this.Shown += new System.EventHandler(this.NewItemDialog_Shown);
129      this.ResumeLayout(false);
130
131    }
132
133    #endregion
134
135    private System.Windows.Forms.Button okButton;
136    private System.Windows.Forms.Button cancelButton;
137    private System.Windows.Forms.ListView itemsListView;
138    private System.Windows.Forms.ToolTip toolTip;
139    private System.Windows.Forms.ColumnHeader nameColumnHeader;
140    private System.Windows.Forms.ColumnHeader descriptioncolumnHeader;
141  }
142}
Note: See TracBrowser for help on using the repository browser.