Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/SelectAnalysisPage.Designer.cs @ 7824

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

#1807:

  • added new wizard pages
  • removed AssemblyInfo files and replaced them with frame file
  • disable buttons when wizardbuttons set to 'none'
  • introduce data analysis context class
File size: 5.9 KB
Line 
1namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
2  partial class SelectAnalysisPage {
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.label4 = new System.Windows.Forms.Label();
27      this.label1 = new System.Windows.Forms.Label();
28      this.rbSmall = new System.Windows.Forms.RadioButton();
29      this.rbMedium = new System.Windows.Forms.RadioButton();
30      this.rbLarge = new System.Windows.Forms.RadioButton();
31      this.rbCustom = new System.Windows.Forms.RadioButton();
32      this.label2 = new System.Windows.Forms.Label();
33      this.label3 = new System.Windows.Forms.Label();
34      this.SuspendLayout();
35      //
36      // wizardBanner
37      //
38      this.wizardBanner.Size = new System.Drawing.Size(408, 81);
39      this.wizardBanner.Subtitle = "Choose one of the predefiend data analysis scenarios or create a custom scenario." +
40    "";
41      this.wizardBanner.Title = "Select Analysis";
42      //
43      // label4
44      //
45      this.label4.AutoSize = true;
46      this.label4.Location = new System.Drawing.Point(3, 87);
47      this.label4.Name = "label4";
48      this.label4.Size = new System.Drawing.Size(32, 13);
49      this.label4.TabIndex = 1;
50      this.label4.Text = "Small";
51      //
52      // label1
53      //
54      this.label1.AutoSize = true;
55      this.label1.Location = new System.Drawing.Point(3, 106);
56      this.label1.Name = "label1";
57      this.label1.Size = new System.Drawing.Size(44, 13);
58      this.label1.TabIndex = 2;
59      this.label1.Text = "Medium";
60      //
61      // rbSmall
62      //
63      this.rbSmall.AutoSize = true;
64      this.rbSmall.Location = new System.Drawing.Point(54, 87);
65      this.rbSmall.Name = "rbSmall";
66      this.rbSmall.Size = new System.Drawing.Size(14, 13);
67      this.rbSmall.TabIndex = 3;
68      this.rbSmall.UseVisualStyleBackColor = true;
69      //
70      // rbMedium
71      //
72      this.rbMedium.AutoSize = true;
73      this.rbMedium.Checked = true;
74      this.rbMedium.Location = new System.Drawing.Point(54, 106);
75      this.rbMedium.Name = "rbMedium";
76      this.rbMedium.Size = new System.Drawing.Size(14, 13);
77      this.rbMedium.TabIndex = 4;
78      this.rbMedium.TabStop = true;
79      this.rbMedium.UseVisualStyleBackColor = true;
80      //
81      // rbLarge
82      //
83      this.rbLarge.AutoSize = true;
84      this.rbLarge.Location = new System.Drawing.Point(54, 125);
85      this.rbLarge.Name = "rbLarge";
86      this.rbLarge.Size = new System.Drawing.Size(14, 13);
87      this.rbLarge.TabIndex = 5;
88      this.rbLarge.UseVisualStyleBackColor = true;
89      //
90      // rbCustom
91      //
92      this.rbCustom.AutoSize = true;
93      this.rbCustom.Location = new System.Drawing.Point(54, 144);
94      this.rbCustom.Name = "rbCustom";
95      this.rbCustom.Size = new System.Drawing.Size(14, 13);
96      this.rbCustom.TabIndex = 6;
97      this.rbCustom.UseVisualStyleBackColor = true;
98      //
99      // label2
100      //
101      this.label2.AutoSize = true;
102      this.label2.Location = new System.Drawing.Point(3, 125);
103      this.label2.Name = "label2";
104      this.label2.Size = new System.Drawing.Size(34, 13);
105      this.label2.TabIndex = 7;
106      this.label2.Text = "Large";
107      //
108      // label3
109      //
110      this.label3.AutoSize = true;
111      this.label3.Location = new System.Drawing.Point(3, 144);
112      this.label3.Name = "label3";
113      this.label3.Size = new System.Drawing.Size(42, 13);
114      this.label3.TabIndex = 8;
115      this.label3.Text = "Custom";
116      //
117      // SelectAnalysisPage
118      //
119      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
120      this.Controls.Add(this.label3);
121      this.Controls.Add(this.label2);
122      this.Controls.Add(this.rbCustom);
123      this.Controls.Add(this.rbLarge);
124      this.Controls.Add(this.rbMedium);
125      this.Controls.Add(this.rbSmall);
126      this.Controls.Add(this.label1);
127      this.Controls.Add(this.label4);
128      this.Name = "SelectAnalysisPage";
129      this.Size = new System.Drawing.Size(408, 274);
130      this.SetActive += new System.ComponentModel.CancelEventHandler(this.SelectAnalysisPage_SetActive);
131      this.WizardNext += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.SelectAnalysisPage_WizardNext);
132      this.Controls.SetChildIndex(this.label4, 0);
133      this.Controls.SetChildIndex(this.wizardBanner, 0);
134      this.Controls.SetChildIndex(this.label1, 0);
135      this.Controls.SetChildIndex(this.rbSmall, 0);
136      this.Controls.SetChildIndex(this.rbMedium, 0);
137      this.Controls.SetChildIndex(this.rbLarge, 0);
138      this.Controls.SetChildIndex(this.rbCustom, 0);
139      this.Controls.SetChildIndex(this.label2, 0);
140      this.Controls.SetChildIndex(this.label3, 0);
141      this.ResumeLayout(false);
142      this.PerformLayout();
143
144    }
145
146    #endregion
147
148    private System.Windows.Forms.Label label4;
149    private System.Windows.Forms.Label label1;
150    private System.Windows.Forms.RadioButton rbSmall;
151    private System.Windows.Forms.RadioButton rbMedium;
152    private System.Windows.Forms.RadioButton rbLarge;
153    private System.Windows.Forms.RadioButton rbCustom;
154    private System.Windows.Forms.Label label2;
155    private System.Windows.Forms.Label label3;
156  }
157}
Note: See TracBrowser for help on using the repository browser.