Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataPage.Designer.cs @ 7939

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

#1807:

  • wizard page to view generated experiments
  • generate experiments according to example
  • plugin frame adapted
  • new version of problem view dialog included
File size: 2.3 KB
Line 
1namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
2  partial class ProblemDataPage {
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.problemView = new HeuristicLab.Optimization.Views.ProblemView();
27      this.SuspendLayout();
28      //
29      // wizardBanner
30      //
31      this.wizardBanner.Size = new System.Drawing.Size(640, 81);
32      //
33      // problemView
34      //
35      this.problemView.Caption = "Problem View";
36      this.problemView.Content = null;
37      this.problemView.Dock = System.Windows.Forms.DockStyle.Fill;
38      this.problemView.Location = new System.Drawing.Point(0, 81);
39      this.problemView.Name = "problemView";
40      this.problemView.ReadOnly = false;
41      this.problemView.Size = new System.Drawing.Size(640, 399);
42      this.problemView.TabIndex = 1;
43      //
44      // ProblemDataPage
45      //
46      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
47      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
48      this.Controls.Add(this.problemView);
49      this.Name = "ProblemDataPage";
50      this.Size = new System.Drawing.Size(640, 480);
51      this.SetActive += new System.ComponentModel.CancelEventHandler(this.ProblemDataPage_SetActive);
52      this.WizardNext += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.ProblemDataPage_WizardNext);
53      this.Controls.SetChildIndex(this.wizardBanner, 0);
54      this.Controls.SetChildIndex(this.problemView, 0);
55      this.ResumeLayout(false);
56
57    }
58
59    #endregion
60
61    private Optimization.Views.ProblemView problemView;
62
63  }
64}
Note: See TracBrowser for help on using the repository browser.