Free cookie consent management tool by TermsFeed Policy Generator

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

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

Added content of start page (#936).

File size: 6.2 KB
RevLine 
[2790]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 {
[2546]23  partial class NewItemDialog {
[2520]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() {
[2546]47      this.components = new System.ComponentModel.Container();
[2520]48      this.okButton = new System.Windows.Forms.Button();
49      this.cancelButton = new System.Windows.Forms.Button();
[2546]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);
[2520]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;
[2546]61      this.okButton.Location = new System.Drawing.Point(456, 409);
[2520]62      this.okButton.Name = "okButton";
63      this.okButton.Size = new System.Drawing.Size(75, 23);
[2546]64      this.okButton.TabIndex = 2;
[2520]65      this.okButton.Text = "&OK";
66      this.okButton.UseVisualStyleBackColor = true;
[2546]67      this.okButton.Click += new System.EventHandler(this.okButton_Click);
[2520]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;
[2546]73      this.cancelButton.Location = new System.Drawing.Point(537, 409);
[2520]74      this.cancelButton.Name = "cancelButton";
75      this.cancelButton.Size = new System.Drawing.Size(75, 23);
[2546]76      this.cancelButton.TabIndex = 3;
[2520]77      this.cancelButton.Text = "&Cancel";
78      this.cancelButton.UseVisualStyleBackColor = true;
79      //
[2546]80      // itemsListView
[2520]81      //
[2546]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});
[3202]88      this.itemsListView.FullRowSelect = true;
[2546]89      this.itemsListView.HideSelection = false;
[2790]90      this.itemsListView.Location = new System.Drawing.Point(12, 12);
[2546]91      this.itemsListView.MultiSelect = false;
92      this.itemsListView.Name = "itemsListView";
[2790]93      this.itemsListView.Size = new System.Drawing.Size(600, 391);
[2546]94      this.itemsListView.TabIndex = 1;
95      this.itemsListView.UseCompatibleStateImageBehavior = false;
[2790]96      this.itemsListView.View = System.Windows.Forms.View.Details;
[2546]97      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemTypesListView_SelectedIndexChanged);
98      this.itemsListView.DoubleClick += new System.EventHandler(this.itemTypesListView_DoubleClick);
99      //
100      // nameColumnHeader
101      //
102      this.nameColumnHeader.Text = "Name";
[2790]103      this.nameColumnHeader.Width = 91;
[2546]104      //
105      // descriptioncolumnHeader
106      //
107      this.descriptioncolumnHeader.Text = "Description";
[2790]108      this.descriptioncolumnHeader.Width = 190;
[2546]109      //
110      // NewItemDialog
111      //
[2520]112      this.AcceptButton = this.okButton;
113      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
114      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
115      this.CancelButton = this.cancelButton;
[2546]116      this.ClientSize = new System.Drawing.Size(624, 444);
117      this.Controls.Add(this.itemsListView);
[2520]118      this.Controls.Add(this.cancelButton);
119      this.Controls.Add(this.okButton);
120      this.MaximizeBox = false;
121      this.MinimizeBox = false;
[2546]122      this.Name = "NewItemDialog";
123      this.ShowIcon = false;
[2520]124      this.ShowInTaskbar = false;
125      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
126      this.Text = "New Item";
127      this.TopMost = true;
[2546]128      this.Load += new System.EventHandler(this.NewItemDialog_Load);
129      this.Shown += new System.EventHandler(this.NewItemDialog_Shown);
[2520]130      this.ResumeLayout(false);
131
132    }
133
134    #endregion
135
136    private System.Windows.Forms.Button okButton;
137    private System.Windows.Forms.Button cancelButton;
[2546]138    private System.Windows.Forms.ListView itemsListView;
139    private System.Windows.Forms.ToolTip toolTip;
140    private System.Windows.Forms.ColumnHeader nameColumnHeader;
141    private System.Windows.Forms.ColumnHeader descriptioncolumnHeader;
[2520]142  }
143}
Note: See TracBrowser for help on using the repository browser.