Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/MediumAnalysisPage.Designer.cs @ 8024

Last change on this file since 8024 was 8024, checked in by spimming, 12 years ago

#1807:

  • fire event when Cancel button clicked
  • support cancellation when generating experiments
  • fixed page sizes
  • plugin dependencies updated
File size: 3.1 KB
Line 
1namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
2  partial class MediumAnalysisPage {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.progressBar1 = new System.Windows.Forms.ProgressBar();
27      this.lblProgress = new System.Windows.Forms.Label();
28      this.SuspendLayout();
29      //
30      // wizardBanner
31      //
32      this.wizardBanner.Size = new System.Drawing.Size(640, 81);
33      this.wizardBanner.Subtitle = "Generating experiment ...";
34      this.wizardBanner.Title = "Medium Analysis";
35      //
36      // progressBar1
37      //
38      this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
39      this.progressBar1.Location = new System.Drawing.Point(30, 263);
40      this.progressBar1.Name = "progressBar1";
41      this.progressBar1.Size = new System.Drawing.Size(580, 23);
42      this.progressBar1.TabIndex = 2;
43      //
44      // lblProgress
45      //
46      this.lblProgress.Anchor = System.Windows.Forms.AnchorStyles.Left;
47      this.lblProgress.AutoSize = true;
48      this.lblProgress.Location = new System.Drawing.Point(27, 230);
49      this.lblProgress.Name = "lblProgress";
50      this.lblProgress.Size = new System.Drawing.Size(125, 13);
51      this.lblProgress.TabIndex = 3;
52      this.lblProgress.Text = "Generating experiment ...";
53      //
54      // MediumAnalysisPage
55      //
56      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
57      this.Controls.Add(this.progressBar1);
58      this.Controls.Add(this.lblProgress);
59      this.Name = "MediumAnalysisPage";
60      this.Size = new System.Drawing.Size(640, 480);
61      this.SetActive += new System.ComponentModel.CancelEventHandler(this.MediumAnalysisPage_SetActive);
62      this.WizardCancel += new System.ComponentModel.CancelEventHandler(this.MediumAnalysisPage_WizardCancel);
63      this.WizardBack += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.MediumAnalysisPage_WizardBack);
64      this.Controls.SetChildIndex(this.lblProgress, 0);
65      this.Controls.SetChildIndex(this.progressBar1, 0);
66      this.Controls.SetChildIndex(this.wizardBanner, 0);
67      this.ResumeLayout(false);
68      this.PerformLayout();
69
70    }
71
72    #endregion
73
74    private System.Windows.Forms.ProgressBar progressBar1;
75    private System.Windows.Forms.Label lblProgress;
76
77  }
78}
Note: See TracBrowser for help on using the repository browser.