using HeuristicLab.MainForm.WindowsForms; namespace HeuristicLab.Hive.ExperimentManager.Views { partial class ProgressView : View { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.progressBar = new System.Windows.Forms.ProgressBar(); this.statusLabel = new System.Windows.Forms.Label(); this.cancelButton = new System.Windows.Forms.Button(); this.panel = new System.Windows.Forms.Panel(); this.panel.SuspendLayout(); this.SuspendLayout(); // // progressBar // this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.progressBar.Location = new System.Drawing.Point(3, 3); this.progressBar.Name = "progressBar"; this.progressBar.Size = new System.Drawing.Size(352, 23); this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressBar.TabIndex = 0; // // statusLabel // this.statusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.statusLabel.Location = new System.Drawing.Point(3, 33); this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(352, 17); this.statusLabel.TabIndex = 1; // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.Location = new System.Drawing.Point(280, 53); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 2; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // panel // this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel.Controls.Add(this.progressBar); this.panel.Controls.Add(this.cancelButton); this.panel.Controls.Add(this.statusLabel); this.panel.Location = new System.Drawing.Point(0, 0); this.panel.Name = "panel"; this.panel.Size = new System.Drawing.Size(360, 88); this.panel.TabIndex = 3; // // ProgressView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.panel); this.Name = "ProgressView"; this.Size = new System.Drawing.Size(360, 88); this.panel.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ProgressBar progressBar; private System.Windows.Forms.Label statusLabel; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Panel panel; } }