#region License Information /* HeuristicLab * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.MainForm.WindowsForms { partial class ProgressView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; #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.Marquee; 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.Bottom) | 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.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 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; } }