1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | namespace HeuristicLab.Analysis.Views {
|
---|
23 | partial class AlleleFrequencyView {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | /// <summary>
|
---|
30 | /// Clean up any resources being used.
|
---|
31 | /// </summary>
|
---|
32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
33 | protected override void Dispose(bool disposing) {
|
---|
34 | if (disposing) {
|
---|
35 | if (components != null) components.Dispose();
|
---|
36 | }
|
---|
37 | base.Dispose(disposing);
|
---|
38 | }
|
---|
39 |
|
---|
40 | #region Component Designer generated code
|
---|
41 |
|
---|
42 | /// <summary>
|
---|
43 | /// Required method for Designer support - do not modify
|
---|
44 | /// the contents of this method with the code editor.
|
---|
45 | /// </summary>
|
---|
46 | private void InitializeComponent() {
|
---|
47 | this.components = new System.ComponentModel.Container();
|
---|
48 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
49 | this.idLabel = new System.Windows.Forms.Label();
|
---|
50 | this.idTextBox = new System.Windows.Forms.TextBox();
|
---|
51 | this.frequencyTextBox = new System.Windows.Forms.TextBox();
|
---|
52 | this.averageImpactTextBox = new System.Windows.Forms.TextBox();
|
---|
53 | this.averageSolutionQualityTextBox = new System.Windows.Forms.TextBox();
|
---|
54 | this.frequencyLabel = new System.Windows.Forms.Label();
|
---|
55 | this.averageImpactLabel = new System.Windows.Forms.Label();
|
---|
56 | this.averageSolutionQualityLabel = new System.Windows.Forms.Label();
|
---|
57 | this.containedInBestKnownSolutionLabel = new System.Windows.Forms.Label();
|
---|
58 | this.containedInBestSolutionLabel = new System.Windows.Forms.Label();
|
---|
59 | this.containedInBestKnownSolutionCheckBox = new System.Windows.Forms.CheckBox();
|
---|
60 | this.containedInBestSolutionCheckBox = new System.Windows.Forms.CheckBox();
|
---|
61 | this.SuspendLayout();
|
---|
62 | //
|
---|
63 | // idLabel
|
---|
64 | //
|
---|
65 | this.idLabel.AutoSize = true;
|
---|
66 | this.idLabel.Location = new System.Drawing.Point(3, 3);
|
---|
67 | this.idLabel.Name = "idLabel";
|
---|
68 | this.idLabel.Size = new System.Drawing.Size(19, 13);
|
---|
69 | this.idLabel.TabIndex = 0;
|
---|
70 | this.idLabel.Text = "&Id:";
|
---|
71 | //
|
---|
72 | // idTextBox
|
---|
73 | //
|
---|
74 | this.idTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
75 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
76 | this.idTextBox.Location = new System.Drawing.Point(179, 0);
|
---|
77 | this.idTextBox.Name = "idTextBox";
|
---|
78 | this.idTextBox.ReadOnly = true;
|
---|
79 | this.idTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
80 | this.idTextBox.TabIndex = 1;
|
---|
81 | //
|
---|
82 | // frequencyTextBox
|
---|
83 | //
|
---|
84 | this.frequencyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
85 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
86 | this.frequencyTextBox.Location = new System.Drawing.Point(179, 26);
|
---|
87 | this.frequencyTextBox.Name = "frequencyTextBox";
|
---|
88 | this.frequencyTextBox.ReadOnly = true;
|
---|
89 | this.frequencyTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
90 | this.frequencyTextBox.TabIndex = 3;
|
---|
91 | //
|
---|
92 | // averageImpactTextBox
|
---|
93 | //
|
---|
94 | this.averageImpactTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
95 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
96 | this.averageImpactTextBox.Location = new System.Drawing.Point(179, 52);
|
---|
97 | this.averageImpactTextBox.Name = "averageImpactTextBox";
|
---|
98 | this.averageImpactTextBox.ReadOnly = true;
|
---|
99 | this.averageImpactTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
100 | this.averageImpactTextBox.TabIndex = 5;
|
---|
101 | //
|
---|
102 | // averageSolutionQualityTextBox
|
---|
103 | //
|
---|
104 | this.averageSolutionQualityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
105 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
106 | this.averageSolutionQualityTextBox.Location = new System.Drawing.Point(179, 78);
|
---|
107 | this.averageSolutionQualityTextBox.Name = "averageSolutionQualityTextBox";
|
---|
108 | this.averageSolutionQualityTextBox.ReadOnly = true;
|
---|
109 | this.averageSolutionQualityTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
110 | this.averageSolutionQualityTextBox.TabIndex = 7;
|
---|
111 | //
|
---|
112 | // frequencyLabel
|
---|
113 | //
|
---|
114 | this.frequencyLabel.AutoSize = true;
|
---|
115 | this.frequencyLabel.Location = new System.Drawing.Point(3, 29);
|
---|
116 | this.frequencyLabel.Name = "frequencyLabel";
|
---|
117 | this.frequencyLabel.Size = new System.Drawing.Size(60, 13);
|
---|
118 | this.frequencyLabel.TabIndex = 2;
|
---|
119 | this.frequencyLabel.Text = "&Frequency:";
|
---|
120 | //
|
---|
121 | // averageImpactLabel
|
---|
122 | //
|
---|
123 | this.averageImpactLabel.AutoSize = true;
|
---|
124 | this.averageImpactLabel.Location = new System.Drawing.Point(3, 55);
|
---|
125 | this.averageImpactLabel.Name = "averageImpactLabel";
|
---|
126 | this.averageImpactLabel.Size = new System.Drawing.Size(85, 13);
|
---|
127 | this.averageImpactLabel.TabIndex = 4;
|
---|
128 | this.averageImpactLabel.Text = "Average &Impact:";
|
---|
129 | //
|
---|
130 | // averageSolutionQualityLabel
|
---|
131 | //
|
---|
132 | this.averageSolutionQualityLabel.AutoSize = true;
|
---|
133 | this.averageSolutionQualityLabel.Location = new System.Drawing.Point(3, 81);
|
---|
134 | this.averageSolutionQualityLabel.Name = "averageSolutionQualityLabel";
|
---|
135 | this.averageSolutionQualityLabel.Size = new System.Drawing.Size(126, 13);
|
---|
136 | this.averageSolutionQualityLabel.TabIndex = 6;
|
---|
137 | this.averageSolutionQualityLabel.Text = "Average Solution &Quality:";
|
---|
138 | //
|
---|
139 | // containedInBestKnownSolutionLabel
|
---|
140 | //
|
---|
141 | this.containedInBestKnownSolutionLabel.AutoSize = true;
|
---|
142 | this.containedInBestKnownSolutionLabel.Location = new System.Drawing.Point(3, 104);
|
---|
143 | this.containedInBestKnownSolutionLabel.Name = "containedInBestKnownSolutionLabel";
|
---|
144 | this.containedInBestKnownSolutionLabel.Size = new System.Drawing.Size(170, 13);
|
---|
145 | this.containedInBestKnownSolutionLabel.TabIndex = 8;
|
---|
146 | this.containedInBestKnownSolutionLabel.Text = "Contained in Best &Known Solution:";
|
---|
147 | //
|
---|
148 | // containedInBestSolutionLabel
|
---|
149 | //
|
---|
150 | this.containedInBestSolutionLabel.AutoSize = true;
|
---|
151 | this.containedInBestSolutionLabel.Location = new System.Drawing.Point(3, 124);
|
---|
152 | this.containedInBestSolutionLabel.Name = "containedInBestSolutionLabel";
|
---|
153 | this.containedInBestSolutionLabel.Size = new System.Drawing.Size(134, 13);
|
---|
154 | this.containedInBestSolutionLabel.TabIndex = 10;
|
---|
155 | this.containedInBestSolutionLabel.Text = "Contained in &Best Solution:";
|
---|
156 | //
|
---|
157 | // containedInBestKnownSolutionCheckBox
|
---|
158 | //
|
---|
159 | this.containedInBestKnownSolutionCheckBox.AutoSize = true;
|
---|
160 | this.containedInBestKnownSolutionCheckBox.Enabled = false;
|
---|
161 | this.containedInBestKnownSolutionCheckBox.Location = new System.Drawing.Point(179, 104);
|
---|
162 | this.containedInBestKnownSolutionCheckBox.Name = "containedInBestKnownSolutionCheckBox";
|
---|
163 | this.containedInBestKnownSolutionCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
164 | this.containedInBestKnownSolutionCheckBox.TabIndex = 9;
|
---|
165 | this.containedInBestKnownSolutionCheckBox.UseVisualStyleBackColor = true;
|
---|
166 | //
|
---|
167 | // containedInBestSolutionCheckBox
|
---|
168 | //
|
---|
169 | this.containedInBestSolutionCheckBox.AutoSize = true;
|
---|
170 | this.containedInBestSolutionCheckBox.Enabled = false;
|
---|
171 | this.containedInBestSolutionCheckBox.Location = new System.Drawing.Point(179, 124);
|
---|
172 | this.containedInBestSolutionCheckBox.Name = "containedInBestSolutionCheckBox";
|
---|
173 | this.containedInBestSolutionCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
174 | this.containedInBestSolutionCheckBox.TabIndex = 11;
|
---|
175 | this.containedInBestSolutionCheckBox.UseVisualStyleBackColor = true;
|
---|
176 | //
|
---|
177 | // AlleleFrequencyView
|
---|
178 | //
|
---|
179 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
180 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
181 | this.Controls.Add(this.containedInBestSolutionCheckBox);
|
---|
182 | this.Controls.Add(this.containedInBestKnownSolutionCheckBox);
|
---|
183 | this.Controls.Add(this.averageSolutionQualityTextBox);
|
---|
184 | this.Controls.Add(this.averageImpactTextBox);
|
---|
185 | this.Controls.Add(this.frequencyTextBox);
|
---|
186 | this.Controls.Add(this.idTextBox);
|
---|
187 | this.Controls.Add(this.containedInBestSolutionLabel);
|
---|
188 | this.Controls.Add(this.containedInBestKnownSolutionLabel);
|
---|
189 | this.Controls.Add(this.averageSolutionQualityLabel);
|
---|
190 | this.Controls.Add(this.averageImpactLabel);
|
---|
191 | this.Controls.Add(this.frequencyLabel);
|
---|
192 | this.Controls.Add(this.idLabel);
|
---|
193 | this.Name = "AlleleFrequencyView";
|
---|
194 | this.Size = new System.Drawing.Size(367, 151);
|
---|
195 | this.ResumeLayout(false);
|
---|
196 | this.PerformLayout();
|
---|
197 |
|
---|
198 | }
|
---|
199 |
|
---|
200 | #endregion
|
---|
201 |
|
---|
202 | protected System.Windows.Forms.ToolTip toolTip;
|
---|
203 | protected System.Windows.Forms.Label idLabel;
|
---|
204 | protected System.Windows.Forms.TextBox idTextBox;
|
---|
205 | protected System.Windows.Forms.TextBox frequencyTextBox;
|
---|
206 | protected System.Windows.Forms.TextBox averageImpactTextBox;
|
---|
207 | protected System.Windows.Forms.TextBox averageSolutionQualityTextBox;
|
---|
208 | protected System.Windows.Forms.Label frequencyLabel;
|
---|
209 | protected System.Windows.Forms.Label averageImpactLabel;
|
---|
210 | protected System.Windows.Forms.Label averageSolutionQualityLabel;
|
---|
211 | protected System.Windows.Forms.Label containedInBestKnownSolutionLabel;
|
---|
212 | protected System.Windows.Forms.Label containedInBestSolutionLabel;
|
---|
213 | protected System.Windows.Forms.CheckBox containedInBestKnownSolutionCheckBox;
|
---|
214 | protected System.Windows.Forms.CheckBox containedInBestSolutionCheckBox;
|
---|
215 | }
|
---|
216 | }
|
---|