Free cookie consent management tool by TermsFeed Policy Generator

source: branches/EnhancedProgress/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ProgressView.designer.cs @ 15417

Last change on this file since 15417 was 15417, checked in by pfleck, 6 years ago

#2845 Removed Visible property and hide on "Finished".

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