Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ResultPage.Designer.cs @ 8033

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

#1807:

  • scenario description added
  • page size fixed
File size: 4.6 KB
Line 
1namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
2  partial class ResultPage {
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.rbHL = new System.Windows.Forms.RadioButton();
27      this.label1 = new System.Windows.Forms.Label();
28      this.label2 = new System.Windows.Forms.Label();
29      this.rbHive = new System.Windows.Forms.RadioButton();
30      this.label3 = new System.Windows.Forms.Label();
31      this.SuspendLayout();
32      //
33      // wizardBanner
34      //
35      this.wizardBanner.Size = new System.Drawing.Size(640, 81);
36      this.wizardBanner.Subtitle = "Choose next step and click Finish to exit the wizard.";
37      this.wizardBanner.Title = "Experiment Created";
38      //
39      // rbHL
40      //
41      this.rbHL.AutoSize = true;
42      this.rbHL.Checked = true;
43      this.rbHL.Location = new System.Drawing.Point(198, 143);
44      this.rbHL.Name = "rbHL";
45      this.rbHL.Size = new System.Drawing.Size(14, 13);
46      this.rbHL.TabIndex = 1;
47      this.rbHL.TabStop = true;
48      this.rbHL.UseVisualStyleBackColor = true;
49      //
50      // label1
51      //
52      this.label1.AutoSize = true;
53      this.label1.Location = new System.Drawing.Point(7, 143);
54      this.label1.Name = "label1";
55      this.label1.Size = new System.Drawing.Size(173, 13);
56      this.label1.TabIndex = 2;
57      this.label1.Text = "Open experiment as HL Experiment";
58      //
59      // label2
60      //
61      this.label2.AutoSize = true;
62      this.label2.Location = new System.Drawing.Point(7, 184);
63      this.label2.Name = "label2";
64      this.label2.Size = new System.Drawing.Size(146, 13);
65      this.label2.TabIndex = 3;
66      this.label2.Text = "Open experiment as Hive Job";
67      //
68      // rbHive
69      //
70      this.rbHive.AutoSize = true;
71      this.rbHive.Location = new System.Drawing.Point(198, 184);
72      this.rbHive.Name = "rbHive";
73      this.rbHive.Size = new System.Drawing.Size(14, 13);
74      this.rbHive.TabIndex = 4;
75      this.rbHive.UseVisualStyleBackColor = true;
76      //
77      // label3
78      //
79      this.label3.AutoSize = true;
80      this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
81      this.label3.Location = new System.Drawing.Point(6, 88);
82      this.label3.Name = "label3";
83      this.label3.Size = new System.Drawing.Size(308, 20);
84      this.label3.TabIndex = 5;
85      this.label3.Text = "Your experiment was created successfully.";
86      //
87      // ResultPage
88      //
89      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
90      this.Controls.Add(this.rbHL);
91      this.Controls.Add(this.rbHive);
92      this.Controls.Add(this.label3);
93      this.Controls.Add(this.label2);
94      this.Controls.Add(this.label1);
95      this.Name = "ResultPage";
96      this.Size = new System.Drawing.Size(640, 480);
97      this.SetActive += new System.ComponentModel.CancelEventHandler(this.ResultPage_SetActive);
98      this.WizardCommit += new System.ComponentModel.CancelEventHandler(this.ResultPage_WizardCommit);
99      this.WizardBack += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.ResultPage_WizardBack);
100      this.Controls.SetChildIndex(this.label1, 0);
101      this.Controls.SetChildIndex(this.label2, 0);
102      this.Controls.SetChildIndex(this.label3, 0);
103      this.Controls.SetChildIndex(this.rbHive, 0);
104      this.Controls.SetChildIndex(this.rbHL, 0);
105      this.Controls.SetChildIndex(this.wizardBanner, 0);
106      this.ResumeLayout(false);
107      this.PerformLayout();
108
109    }
110
111    #endregion
112
113    private System.Windows.Forms.RadioButton rbHL;
114    private System.Windows.Forms.Label label1;
115    private System.Windows.Forms.Label label2;
116    private System.Windows.Forms.RadioButton rbHive;
117    private System.Windows.Forms.Label label3;
118  }
119}
Note: See TracBrowser for help on using the repository browser.