1 | namespace HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard {
|
---|
2 | partial class WizardBase {
|
---|
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 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WizardBase));
|
---|
27 | this.pagePanel = new System.Windows.Forms.Panel();
|
---|
28 | this.controlPanel = new System.Windows.Forms.Panel();
|
---|
29 | this.btnNext = new System.Windows.Forms.Button();
|
---|
30 | this.btnBack = new System.Windows.Forms.Button();
|
---|
31 | this.btnCommit = new System.Windows.Forms.Button();
|
---|
32 | this.btnCancel = new System.Windows.Forms.Button();
|
---|
33 | this.etchedLine1 = new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.Controls.EtchedLine();
|
---|
34 | this.controlPanel.SuspendLayout();
|
---|
35 | this.SuspendLayout();
|
---|
36 | //
|
---|
37 | // pagePanel
|
---|
38 | //
|
---|
39 | this.pagePanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
|
---|
40 | this.pagePanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
41 | this.pagePanel.Location = new System.Drawing.Point(0, 0);
|
---|
42 | this.pagePanel.Name = "pagePanel";
|
---|
43 | this.pagePanel.Size = new System.Drawing.Size(624, 384);
|
---|
44 | this.pagePanel.TabIndex = 0;
|
---|
45 | //
|
---|
46 | // controlPanel
|
---|
47 | //
|
---|
48 | this.controlPanel.Controls.Add(this.btnNext);
|
---|
49 | this.controlPanel.Controls.Add(this.btnBack);
|
---|
50 | this.controlPanel.Controls.Add(this.btnCommit);
|
---|
51 | this.controlPanel.Controls.Add(this.btnCancel);
|
---|
52 | this.controlPanel.Controls.Add(this.etchedLine1);
|
---|
53 | this.controlPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
|
---|
54 | this.controlPanel.Location = new System.Drawing.Point(0, 384);
|
---|
55 | this.controlPanel.Name = "controlPanel";
|
---|
56 | this.controlPanel.Size = new System.Drawing.Size(624, 58);
|
---|
57 | this.controlPanel.TabIndex = 1;
|
---|
58 | //
|
---|
59 | // btnNext
|
---|
60 | //
|
---|
61 | this.btnNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
62 | this.btnNext.Location = new System.Drawing.Point(457, 19);
|
---|
63 | this.btnNext.Name = "btnNext";
|
---|
64 | this.btnNext.Size = new System.Drawing.Size(75, 23);
|
---|
65 | this.btnNext.TabIndex = 4;
|
---|
66 | this.btnNext.Text = "Next";
|
---|
67 | this.btnNext.UseVisualStyleBackColor = true;
|
---|
68 | this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
|
---|
69 | //
|
---|
70 | // btnBack
|
---|
71 | //
|
---|
72 | this.btnBack.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
73 | this.btnBack.Location = new System.Drawing.Point(375, 19);
|
---|
74 | this.btnBack.Name = "btnBack";
|
---|
75 | this.btnBack.Size = new System.Drawing.Size(75, 23);
|
---|
76 | this.btnBack.TabIndex = 3;
|
---|
77 | this.btnBack.Text = "< Back";
|
---|
78 | this.btnBack.UseVisualStyleBackColor = true;
|
---|
79 | this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
|
---|
80 | //
|
---|
81 | // btnCommit
|
---|
82 | //
|
---|
83 | this.btnCommit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
84 | this.btnCommit.Location = new System.Drawing.Point(456, 19);
|
---|
85 | this.btnCommit.Name = "btnCommit";
|
---|
86 | this.btnCommit.Size = new System.Drawing.Size(75, 23);
|
---|
87 | this.btnCommit.TabIndex = 2;
|
---|
88 | this.btnCommit.Text = "Commit";
|
---|
89 | this.btnCommit.UseVisualStyleBackColor = true;
|
---|
90 | this.btnCommit.Click += new System.EventHandler(this.btnCommit_Click);
|
---|
91 | //
|
---|
92 | // btnCancel
|
---|
93 | //
|
---|
94 | this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
95 | this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
96 | this.btnCancel.Location = new System.Drawing.Point(537, 19);
|
---|
97 | this.btnCancel.Name = "btnCancel";
|
---|
98 | this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
---|
99 | this.btnCancel.TabIndex = 1;
|
---|
100 | this.btnCancel.Text = "Cancel";
|
---|
101 | this.btnCancel.UseVisualStyleBackColor = true;
|
---|
102 | this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
---|
103 | //
|
---|
104 | // etchedLine1
|
---|
105 | //
|
---|
106 | this.etchedLine1.DarkColor = System.Drawing.SystemColors.ControlDark;
|
---|
107 | this.etchedLine1.Dock = System.Windows.Forms.DockStyle.Top;
|
---|
108 | this.etchedLine1.Edge = HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.Controls.EtchEdge.Top;
|
---|
109 | this.etchedLine1.LightColor = System.Drawing.SystemColors.ControlLight;
|
---|
110 | this.etchedLine1.Location = new System.Drawing.Point(0, 0);
|
---|
111 | this.etchedLine1.Name = "etchedLine1";
|
---|
112 | this.etchedLine1.Size = new System.Drawing.Size(624, 19);
|
---|
113 | this.etchedLine1.TabIndex = 0;
|
---|
114 | //
|
---|
115 | // WizardBase
|
---|
116 | //
|
---|
117 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
118 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
119 | this.ClientSize = new System.Drawing.Size(624, 442);
|
---|
120 | this.Controls.Add(this.pagePanel);
|
---|
121 | this.Controls.Add(this.controlPanel);
|
---|
122 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
123 | this.Name = "WizardBase";
|
---|
124 | this.Text = "Wizard";
|
---|
125 | this.Load += new System.EventHandler(this.Wizard_Load);
|
---|
126 | this.controlPanel.ResumeLayout(false);
|
---|
127 | this.ResumeLayout(false);
|
---|
128 |
|
---|
129 | }
|
---|
130 |
|
---|
131 | #endregion
|
---|
132 |
|
---|
133 | private System.Windows.Forms.Panel pagePanel;
|
---|
134 | private System.Windows.Forms.Panel controlPanel;
|
---|
135 | private Controls.EtchedLine etchedLine1;
|
---|
136 | private System.Windows.Forms.Button btnBack;
|
---|
137 | private System.Windows.Forms.Button btnCommit;
|
---|
138 | private System.Windows.Forms.Button btnCancel;
|
---|
139 | private System.Windows.Forms.Button btnNext;
|
---|
140 | }
|
---|
141 | } |
---|