Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ProgressView.designer.cs

Last change on this file was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.messageLabel = new System.Windows.Forms.Label();
39      this.borderPanel = new System.Windows.Forms.Panel();
40      this.panel = new System.Windows.Forms.Panel();
41      this.stopButton = new System.Windows.Forms.Button();
42      this.cancelButton = new System.Windows.Forms.Button();
43      this.borderPanel.SuspendLayout();
44      this.panel.SuspendLayout();
45      this.SuspendLayout();
46      //
47      // progressBar
48      //
49      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
50            | System.Windows.Forms.AnchorStyles.Right)));
51      this.progressBar.Location = new System.Drawing.Point(3, 3);
52      this.progressBar.Name = "progressBar";
53      this.progressBar.Size = new System.Drawing.Size(366, 23);
54      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
55      this.progressBar.TabIndex = 0;
56      //
57      // messageLabel
58      //
59      this.messageLabel.Dock = System.Windows.Forms.DockStyle.Fill;
60      this.messageLabel.Location = new System.Drawing.Point(0, 0);
61      this.messageLabel.Name = "messageLabel";
62      this.messageLabel.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
63      this.messageLabel.Size = new System.Drawing.Size(217, 23);
64      this.messageLabel.TabIndex = 1;
65      this.messageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
66      //
67      // borderPanel
68      //
69      this.borderPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
70            | System.Windows.Forms.AnchorStyles.Left)
71            | System.Windows.Forms.AnchorStyles.Right)));
72      this.borderPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
73      this.borderPanel.Controls.Add(this.panel);
74      this.borderPanel.Controls.Add(this.progressBar);
75      this.borderPanel.Location = new System.Drawing.Point(0, 0);
76      this.borderPanel.Name = "borderPanel";
77      this.borderPanel.Size = new System.Drawing.Size(374, 62);
78      this.borderPanel.TabIndex = 3;
79      //
80      // panel
81      //
82      this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
83            | System.Windows.Forms.AnchorStyles.Right)));
84      this.panel.Controls.Add(this.messageLabel);
85      this.panel.Controls.Add(this.stopButton);
86      this.panel.Controls.Add(this.cancelButton);
87      this.panel.Location = new System.Drawing.Point(3, 32);
88      this.panel.Name = "panel";
89      this.panel.Size = new System.Drawing.Size(367, 23);
90      this.panel.TabIndex = 4;
91      //
92      // stopButton
93      //
94      this.stopButton.Dock = System.Windows.Forms.DockStyle.Right;
95      this.stopButton.Location = new System.Drawing.Point(217, 0);
96      this.stopButton.Name = "stopButton";
97      this.stopButton.Size = new System.Drawing.Size(75, 23);
98      this.stopButton.TabIndex = 3;
99      this.stopButton.Text = "Stop";
100      this.stopButton.UseVisualStyleBackColor = true;
101      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
102      //
103      // cancelButton
104      //
105      this.cancelButton.Dock = System.Windows.Forms.DockStyle.Right;
106      this.cancelButton.Location = new System.Drawing.Point(292, 0);
107      this.cancelButton.Name = "cancelButton";
108      this.cancelButton.Size = new System.Drawing.Size(75, 23);
109      this.cancelButton.TabIndex = 2;
110      this.cancelButton.Text = "Cancel";
111      this.cancelButton.UseVisualStyleBackColor = true;
112      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
113      //
114      // ProgressView
115      //
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
117      this.Controls.Add(this.borderPanel);
118      this.Name = "ProgressView";
119      this.Size = new System.Drawing.Size(374, 62);
120      this.borderPanel.ResumeLayout(false);
121      this.panel.ResumeLayout(false);
122      this.ResumeLayout(false);
123
124    }
125
126    #endregion
127
128    private System.Windows.Forms.ProgressBar progressBar;
129    private System.Windows.Forms.Label messageLabel;
130    private System.Windows.Forms.Panel borderPanel;
131    private System.Windows.Forms.Button stopButton;
132    private System.Windows.Forms.Panel panel;
133    private System.Windows.Forms.Button cancelButton;
134  }
135}
Note: See TracBrowser for help on using the repository browser.