1 | using HeuristicLab.MainForm.WindowsForms;
|
---|
2 | namespace HeuristicLab.Clients.Hive.Views {
|
---|
3 | partial class ProgressView : View {
|
---|
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.progressBar = new System.Windows.Forms.ProgressBar();
|
---|
28 | this.statusLabel = new System.Windows.Forms.Label();
|
---|
29 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
30 | this.panel = new System.Windows.Forms.Panel();
|
---|
31 | this.panel.SuspendLayout();
|
---|
32 | this.SuspendLayout();
|
---|
33 | //
|
---|
34 | // progressBar
|
---|
35 | //
|
---|
36 | this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
37 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
38 | this.progressBar.Location = new System.Drawing.Point(3, 3);
|
---|
39 | this.progressBar.Name = "progressBar";
|
---|
40 | this.progressBar.Size = new System.Drawing.Size(352, 23);
|
---|
41 | this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
---|
42 | this.progressBar.TabIndex = 0;
|
---|
43 | //
|
---|
44 | // statusLabel
|
---|
45 | //
|
---|
46 | this.statusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
47 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
48 | this.statusLabel.Location = new System.Drawing.Point(3, 33);
|
---|
49 | this.statusLabel.Name = "statusLabel";
|
---|
50 | this.statusLabel.Size = new System.Drawing.Size(352, 17);
|
---|
51 | this.statusLabel.TabIndex = 1;
|
---|
52 | //
|
---|
53 | // cancelButton
|
---|
54 | //
|
---|
55 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
56 | this.cancelButton.Location = new System.Drawing.Point(280, 53);
|
---|
57 | this.cancelButton.Name = "cancelButton";
|
---|
58 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
59 | this.cancelButton.TabIndex = 2;
|
---|
60 | this.cancelButton.Text = "Cancel";
|
---|
61 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
62 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
63 | //
|
---|
64 | // panel
|
---|
65 | //
|
---|
66 | this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
67 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
68 | this.panel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
---|
69 | this.panel.Controls.Add(this.progressBar);
|
---|
70 | this.panel.Controls.Add(this.cancelButton);
|
---|
71 | this.panel.Controls.Add(this.statusLabel);
|
---|
72 | this.panel.Location = new System.Drawing.Point(0, 0);
|
---|
73 | this.panel.Name = "panel";
|
---|
74 | this.panel.Size = new System.Drawing.Size(360, 88);
|
---|
75 | this.panel.TabIndex = 3;
|
---|
76 | //
|
---|
77 | // ProgressView
|
---|
78 | //
|
---|
79 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
80 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
81 | this.Controls.Add(this.panel);
|
---|
82 | this.Name = "ProgressView";
|
---|
83 | this.Size = new System.Drawing.Size(360, 88);
|
---|
84 | this.panel.ResumeLayout(false);
|
---|
85 | this.ResumeLayout(false);
|
---|
86 |
|
---|
87 | }
|
---|
88 |
|
---|
89 | #endregion
|
---|
90 |
|
---|
91 | private System.Windows.Forms.ProgressBar progressBar;
|
---|
92 | private System.Windows.Forms.Label statusLabel;
|
---|
93 | private System.Windows.Forms.Button cancelButton;
|
---|
94 | private System.Windows.Forms.Panel panel;
|
---|
95 | }
|
---|
96 | }
|
---|