Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10498 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

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