Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Optimizer/3.3/NewItemDialog.Designer.cs @ 6748

Last change on this file since 6748 was 6748, checked in by abeham, 13 years ago

#1642

  • Made instantiating of Creatables asynchronous
  • Added progress bar to indicate that there is something going on
File size: 8.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
52      this.versionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
53      this.descriptioncolumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
54      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
55      this.loadingPanel = new System.Windows.Forms.Panel();
56      this.pleaseWaitLabel = new System.Windows.Forms.Label();
57      this.loadingProgressBar = new System.Windows.Forms.ProgressBar();
58      this.loadingPanel.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // okButton
62      //
63      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
64      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
65      this.okButton.Enabled = false;
66      this.okButton.Location = new System.Drawing.Point(456, 409);
67      this.okButton.Name = "okButton";
68      this.okButton.Size = new System.Drawing.Size(75, 23);
69      this.okButton.TabIndex = 2;
70      this.okButton.Text = "&OK";
71      this.okButton.UseVisualStyleBackColor = true;
72      this.okButton.Click += new System.EventHandler(this.okButton_Click);
73      //
74      // cancelButton
75      //
76      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
77      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
78      this.cancelButton.Location = new System.Drawing.Point(537, 409);
79      this.cancelButton.Name = "cancelButton";
80      this.cancelButton.Size = new System.Drawing.Size(75, 23);
81      this.cancelButton.TabIndex = 3;
82      this.cancelButton.Text = "&Cancel";
83      this.cancelButton.UseVisualStyleBackColor = true;
84      //
85      // itemsListView
86      //
87      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
88                  | System.Windows.Forms.AnchorStyles.Left)
89                  | System.Windows.Forms.AnchorStyles.Right)));
90      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
91            this.nameColumnHeader,
92            this.versionColumnHeader,
93            this.descriptioncolumnHeader});
94      this.itemsListView.FullRowSelect = true;
95      this.itemsListView.HideSelection = false;
96      this.itemsListView.Location = new System.Drawing.Point(12, 12);
97      this.itemsListView.MultiSelect = false;
98      this.itemsListView.Name = "itemsListView";
99      this.itemsListView.Size = new System.Drawing.Size(600, 391);
100      this.itemsListView.TabIndex = 1;
101      this.itemsListView.UseCompatibleStateImageBehavior = false;
102      this.itemsListView.View = System.Windows.Forms.View.Details;
103      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemTypesListView_SelectedIndexChanged);
104      this.itemsListView.DoubleClick += new System.EventHandler(this.itemTypesListView_DoubleClick);
105      //
106      // nameColumnHeader
107      //
108      this.nameColumnHeader.Text = "Name";
109      this.nameColumnHeader.Width = 91;
110      //
111      // versionColumnHeader
112      //
113      this.versionColumnHeader.Text = "Version";
114      //
115      // descriptioncolumnHeader
116      //
117      this.descriptioncolumnHeader.Text = "Description";
118      this.descriptioncolumnHeader.Width = 190;
119      //
120      // loadingPanel
121      //
122      this.loadingPanel.Controls.Add(this.pleaseWaitLabel);
123      this.loadingPanel.Controls.Add(this.loadingProgressBar);
124      this.loadingPanel.Location = new System.Drawing.Point(37, 153);
125      this.loadingPanel.Name = "loadingPanel";
126      this.loadingPanel.Size = new System.Drawing.Size(550, 106);
127      this.loadingPanel.TabIndex = 4;
128      //
129      // pleaseWaitLabel
130      //
131      this.pleaseWaitLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
132      this.pleaseWaitLabel.Location = new System.Drawing.Point(44, 59);
133      this.pleaseWaitLabel.Name = "pleaseWaitLabel";
134      this.pleaseWaitLabel.Size = new System.Drawing.Size(462, 23);
135      this.pleaseWaitLabel.TabIndex = 1;
136      this.pleaseWaitLabel.Text = "Loading items, please wait...";
137      this.pleaseWaitLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
138      //
139      // loadingProgressBar
140      //
141      this.loadingProgressBar.Anchor = System.Windows.Forms.AnchorStyles.None;
142      this.loadingProgressBar.Location = new System.Drawing.Point(44, 32);
143      this.loadingProgressBar.Name = "loadingProgressBar";
144      this.loadingProgressBar.Size = new System.Drawing.Size(462, 23);
145      this.loadingProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
146      this.loadingProgressBar.TabIndex = 0;
147      //
148      // NewItemDialog
149      //
150      this.AcceptButton = this.okButton;
151      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
152      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
153      this.CancelButton = this.cancelButton;
154      this.ClientSize = new System.Drawing.Size(624, 444);
155      this.Controls.Add(this.loadingPanel);
156      this.Controls.Add(this.itemsListView);
157      this.Controls.Add(this.cancelButton);
158      this.Controls.Add(this.okButton);
159      this.MaximizeBox = false;
160      this.MinimizeBox = false;
161      this.Name = "NewItemDialog";
162      this.ShowIcon = false;
163      this.ShowInTaskbar = false;
164      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
165      this.Text = "New Item";
166      this.TopMost = true;
167      this.Load += new System.EventHandler(this.NewItemDialog_Load);
168      this.Shown += new System.EventHandler(this.NewItemDialog_Shown);
169      this.loadingPanel.ResumeLayout(false);
170      this.ResumeLayout(false);
171
172    }
173
174    #endregion
175
176    private System.Windows.Forms.Button okButton;
177    private System.Windows.Forms.Button cancelButton;
178    private System.Windows.Forms.ListView itemsListView;
179    private System.Windows.Forms.ToolTip toolTip;
180    private System.Windows.Forms.ColumnHeader nameColumnHeader;
181    private System.Windows.Forms.ColumnHeader descriptioncolumnHeader;
182    private System.Windows.Forms.ColumnHeader versionColumnHeader;
183    private System.Windows.Forms.Panel loadingPanel;
184    private System.Windows.Forms.Label pleaseWaitLabel;
185    private System.Windows.Forms.ProgressBar loadingProgressBar;
186  }
187}
Note: See TracBrowser for help on using the repository browser.