Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 8187 was 8187, checked in by abeham, 12 years ago

#1762: Moved the ProgressView to the folder Controls instead of Views.

File size: 4.3 KB
Line 
1
2namespace HeuristicLab.MainForm.WindowsForms {
3  partial class ProgressView {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Component Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      this.components = new System.ComponentModel.Container();
28      this.progressBar = new System.Windows.Forms.ProgressBar();
29      this.statusLabel = new System.Windows.Forms.Label();
30      this.cancelButton = new System.Windows.Forms.Button();
31      this.panel = new System.Windows.Forms.Panel();
32      this.cancelButtonTimer = new System.Windows.Forms.Timer(this.components);
33      this.panel.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // progressBar
37      //
38      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
39                  | System.Windows.Forms.AnchorStyles.Right)));
40      this.progressBar.Location = new System.Drawing.Point(3, 3);
41      this.progressBar.Name = "progressBar";
42      this.progressBar.Size = new System.Drawing.Size(352, 23);
43      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
44      this.progressBar.TabIndex = 0;
45      //
46      // statusLabel
47      //
48      this.statusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
49                  | System.Windows.Forms.AnchorStyles.Right)));
50      this.statusLabel.Location = new System.Drawing.Point(3, 33);
51      this.statusLabel.Name = "statusLabel";
52      this.statusLabel.Size = new System.Drawing.Size(352, 17);
53      this.statusLabel.TabIndex = 1;
54      //
55      // cancelButton
56      //
57      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
58      this.cancelButton.Location = new System.Drawing.Point(280, 53);
59      this.cancelButton.Name = "cancelButton";
60      this.cancelButton.Size = new System.Drawing.Size(75, 23);
61      this.cancelButton.TabIndex = 2;
62      this.cancelButton.Text = "Cancel";
63      this.cancelButton.UseVisualStyleBackColor = true;
64      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
65      //
66      // panel
67      //
68      this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
69                  | System.Windows.Forms.AnchorStyles.Right)));
70      this.panel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
71      this.panel.Controls.Add(this.progressBar);
72      this.panel.Controls.Add(this.cancelButton);
73      this.panel.Controls.Add(this.statusLabel);
74      this.panel.Location = new System.Drawing.Point(0, 0);
75      this.panel.Name = "panel";
76      this.panel.Size = new System.Drawing.Size(360, 88);
77      this.panel.TabIndex = 3;
78      //
79      // cancelButtonTimer
80      //
81      this.cancelButtonTimer.Tick += new System.EventHandler(this.cancelButtonTimer_Tick);
82      //
83      // ProgressView
84      //
85      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
86      this.Controls.Add(this.panel);
87      this.Name = "ProgressView";
88      this.Size = new System.Drawing.Size(360, 88);
89      this.panel.ResumeLayout(false);
90      this.ResumeLayout(false);
91
92    }
93
94    #endregion
95
96    private System.Windows.Forms.ProgressBar progressBar;
97    private System.Windows.Forms.Label statusLabel;
98    private System.Windows.Forms.Button cancelButton;
99    private System.Windows.Forms.Panel panel;
100    private System.Windows.Forms.Timer cancelButtonTimer;
101  }
102}
Note: See TracBrowser for help on using the repository browser.