Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure.GUI/DownloaderDialog.Designer.cs @ 2

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 4.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.PluginInfrastructure.GUI {
23  partial class DownloaderDialog {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if(disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DownloaderDialog));
48      this.cancelButton = new System.Windows.Forms.Button();
49      this.downloadProgressBar = new System.Windows.Forms.ProgressBar();
50      this.downloadDescription = new System.Windows.Forms.Label();
51      this.SuspendLayout();
52      //
53      // cancelButton
54      //
55      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
56      this.cancelButton.Location = new System.Drawing.Point(303, 99);
57      this.cancelButton.Name = "cancelButton";
58      this.cancelButton.Size = new System.Drawing.Size(75, 23);
59      this.cancelButton.TabIndex = 0;
60      this.cancelButton.Text = "Cancel";
61      this.cancelButton.UseVisualStyleBackColor = true;
62      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
63      //
64      // downloadProgressBar
65      //
66      this.downloadProgressBar.Location = new System.Drawing.Point(15, 25);
67      this.downloadProgressBar.Name = "downloadProgressBar";
68      this.downloadProgressBar.Size = new System.Drawing.Size(363, 23);
69      this.downloadProgressBar.TabIndex = 1;
70      //
71      // downloadDescription
72      //
73      this.downloadDescription.AutoSize = true;
74      this.downloadDescription.Location = new System.Drawing.Point(12, 9);
75      this.downloadDescription.Name = "downloadDescription";
76      this.downloadDescription.Size = new System.Drawing.Size(35, 13);
77      this.downloadDescription.TabIndex = 2;
78      this.downloadDescription.Text = "label1";
79      //
80      // DownloaderDialog
81      //
82      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
83      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
84      this.ClientSize = new System.Drawing.Size(390, 134);
85      this.Controls.Add(this.downloadDescription);
86      this.Controls.Add(this.downloadProgressBar);
87      this.Controls.Add(this.cancelButton);
88      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
89      this.Name = "DownloaderDialog";
90      this.Text = "DownloaderDialog";
91      this.ResumeLayout(false);
92      this.PerformLayout();
93
94    }
95
96    #endregion
97
98    private System.Windows.Forms.Button cancelButton;
99    private System.Windows.Forms.ProgressBar downloadProgressBar;
100    private System.Windows.Forms.Label downloadDescription;
101  }
102}
Note: See TracBrowser for help on using the repository browser.