Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ProgressView.designer.cs @ 9933

Last change on this file since 9933 was 9933, checked in by ascheibe, 11 years ago

#1042 merged r9849, r9851, r9865, r9867, r9868, r9893, r9894, r9895, r9896, r9900, r9901, r9905, r9907 into stable branch

File size: 4.5 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.MainForm.WindowsForms {
23  partial class ProgressView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29   
30    #region Component Designer generated code
31
32    /// <summary>
33    /// Required method for Designer support - do not modify
34    /// the contents of this method with the code editor.
35    /// </summary>
36    private void InitializeComponent() {
37      this.progressBar = new System.Windows.Forms.ProgressBar();
38      this.statusLabel = new System.Windows.Forms.Label();
39      this.cancelButton = new System.Windows.Forms.Button();
40      this.panel = new System.Windows.Forms.Panel();
41      this.panel.SuspendLayout();
42      this.SuspendLayout();
43      //
44      // progressBar
45      //
46      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
47            | System.Windows.Forms.AnchorStyles.Right)));
48      this.progressBar.Location = new System.Drawing.Point(3, 3);
49      this.progressBar.Name = "progressBar";
50      this.progressBar.Size = new System.Drawing.Size(352, 23);
51      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
52      this.progressBar.TabIndex = 0;
53      //
54      // statusLabel
55      //
56      this.statusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
57            | System.Windows.Forms.AnchorStyles.Right)));
58      this.statusLabel.Location = new System.Drawing.Point(3, 33);
59      this.statusLabel.Name = "statusLabel";
60      this.statusLabel.Size = new System.Drawing.Size(352, 17);
61      this.statusLabel.TabIndex = 1;
62      //
63      // cancelButton
64      //
65      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
66      this.cancelButton.Location = new System.Drawing.Point(280, 53);
67      this.cancelButton.Name = "cancelButton";
68      this.cancelButton.Size = new System.Drawing.Size(75, 23);
69      this.cancelButton.TabIndex = 2;
70      this.cancelButton.Text = "Cancel";
71      this.cancelButton.UseVisualStyleBackColor = true;
72      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
73      //
74      // panel
75      //
76      this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
77            | System.Windows.Forms.AnchorStyles.Left)
78            | System.Windows.Forms.AnchorStyles.Right)));
79      this.panel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
80      this.panel.Controls.Add(this.progressBar);
81      this.panel.Controls.Add(this.cancelButton);
82      this.panel.Controls.Add(this.statusLabel);
83      this.panel.Location = new System.Drawing.Point(0, 0);
84      this.panel.Name = "panel";
85      this.panel.Size = new System.Drawing.Size(360, 88);
86      this.panel.TabIndex = 3;
87      //
88      // ProgressView
89      //
90      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
91      this.Controls.Add(this.panel);
92      this.Name = "ProgressView";
93      this.Size = new System.Drawing.Size(360, 88);
94      this.panel.ResumeLayout(false);
95      this.ResumeLayout(false);
96
97    }
98
99    #endregion
100
101    private System.Windows.Forms.ProgressBar progressBar;
102    private System.Windows.Forms.Label statusLabel;
103    private System.Windows.Forms.Button cancelButton;
104    private System.Windows.Forms.Panel panel;
105  }
106}
Note: See TracBrowser for help on using the repository browser.