1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 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.AlgorithmBehavior.Views {
|
---|
23 | partial class StatisticalTestingView {
|
---|
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 && (components != null)) {
|
---|
35 | components.Dispose();
|
---|
36 | }
|
---|
37 | base.Dispose(disposing);
|
---|
38 | }
|
---|
39 |
|
---|
40 | #region Windows Form 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 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StatisticalTestingView));
|
---|
49 | this.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
|
---|
50 | this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
51 | this.openBoxPlotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
52 | this.groupByLabel = new System.Windows.Forms.Label();
|
---|
53 | this.label1 = new System.Windows.Forms.Label();
|
---|
54 | this.resultComboBox = new System.Windows.Forms.ComboBox();
|
---|
55 | this.testButton = new System.Windows.Forms.Button();
|
---|
56 | this.normalDistButton = new System.Windows.Forms.Button();
|
---|
57 | this.lblPVal = new System.Windows.Forms.Label();
|
---|
58 | this.pValTextBox = new System.Windows.Forms.TextBox();
|
---|
59 | this.groupComboBox = new System.Windows.Forms.ComboBox();
|
---|
60 | this.normalityDetails = new System.Windows.Forms.Button();
|
---|
61 | this.pairwiseTestButton = new System.Windows.Forms.Button();
|
---|
62 | this.infoLabel = new System.Windows.Forms.Label();
|
---|
63 | this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
---|
64 | this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
---|
65 | this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
---|
66 | this.contextMenuStrip1.SuspendLayout();
|
---|
67 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
---|
68 | this.splitContainer1.Panel1.SuspendLayout();
|
---|
69 | this.splitContainer1.Panel2.SuspendLayout();
|
---|
70 | this.splitContainer1.SuspendLayout();
|
---|
71 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
|
---|
72 | this.splitContainer2.Panel1.SuspendLayout();
|
---|
73 | this.splitContainer2.Panel2.SuspendLayout();
|
---|
74 | this.splitContainer2.SuspendLayout();
|
---|
75 | this.SuspendLayout();
|
---|
76 | //
|
---|
77 | // stringConvertibleMatrixView
|
---|
78 | //
|
---|
79 | this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
80 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
81 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
82 | this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
|
---|
83 | this.stringConvertibleMatrixView.Content = null;
|
---|
84 | this.stringConvertibleMatrixView.ContextMenuStrip = this.contextMenuStrip1;
|
---|
85 | this.stringConvertibleMatrixView.Location = new System.Drawing.Point(3, 38);
|
---|
86 | this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView";
|
---|
87 | this.stringConvertibleMatrixView.ReadOnly = false;
|
---|
88 | this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false;
|
---|
89 | this.stringConvertibleMatrixView.ShowStatisticalInformation = true;
|
---|
90 | this.stringConvertibleMatrixView.Size = new System.Drawing.Size(918, 423);
|
---|
91 | this.stringConvertibleMatrixView.TabIndex = 0;
|
---|
92 | //
|
---|
93 | // contextMenuStrip1
|
---|
94 | //
|
---|
95 | this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
96 | this.openBoxPlotToolStripMenuItem});
|
---|
97 | this.contextMenuStrip1.Name = "contextMenuStrip1";
|
---|
98 | this.contextMenuStrip1.Size = new System.Drawing.Size(175, 26);
|
---|
99 | //
|
---|
100 | // openBoxPlotToolStripMenuItem
|
---|
101 | //
|
---|
102 | this.openBoxPlotToolStripMenuItem.Name = "openBoxPlotToolStripMenuItem";
|
---|
103 | this.openBoxPlotToolStripMenuItem.Size = new System.Drawing.Size(174, 22);
|
---|
104 | this.openBoxPlotToolStripMenuItem.Text = "Open BoxPlot View";
|
---|
105 | this.openBoxPlotToolStripMenuItem.Click += new System.EventHandler(this.openBoxPlotToolStripMenuItem_Click);
|
---|
106 | //
|
---|
107 | // groupByLabel
|
---|
108 | //
|
---|
109 | this.groupByLabel.AutoSize = true;
|
---|
110 | this.groupByLabel.Location = new System.Drawing.Point(3, 6);
|
---|
111 | this.groupByLabel.Name = "groupByLabel";
|
---|
112 | this.groupByLabel.Size = new System.Drawing.Size(53, 13);
|
---|
113 | this.groupByLabel.TabIndex = 7;
|
---|
114 | this.groupByLabel.Text = "Group by:";
|
---|
115 | //
|
---|
116 | // label1
|
---|
117 | //
|
---|
118 | this.label1.AutoSize = true;
|
---|
119 | this.label1.Location = new System.Drawing.Point(3, 6);
|
---|
120 | this.label1.Name = "label1";
|
---|
121 | this.label1.Size = new System.Drawing.Size(40, 13);
|
---|
122 | this.label1.TabIndex = 6;
|
---|
123 | this.label1.Text = "Result:";
|
---|
124 | //
|
---|
125 | // resultComboBox
|
---|
126 | //
|
---|
127 | this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
128 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
129 | this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
130 | this.resultComboBox.FormattingEnabled = true;
|
---|
131 | this.resultComboBox.Location = new System.Drawing.Point(49, 3);
|
---|
132 | this.resultComboBox.Name = "resultComboBox";
|
---|
133 | this.resultComboBox.Size = new System.Drawing.Size(393, 21);
|
---|
134 | this.resultComboBox.TabIndex = 5;
|
---|
135 | this.resultComboBox.SelectedValueChanged += new System.EventHandler(this.resultComboBox_SelectedValueChanged);
|
---|
136 | //
|
---|
137 | // testButton
|
---|
138 | //
|
---|
139 | this.testButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
140 | this.testButton.Location = new System.Drawing.Point(196, 3);
|
---|
141 | this.testButton.Name = "testButton";
|
---|
142 | this.testButton.Size = new System.Drawing.Size(109, 23);
|
---|
143 | this.testButton.TabIndex = 9;
|
---|
144 | this.testButton.Text = "Test all Groups";
|
---|
145 | this.testButton.UseVisualStyleBackColor = true;
|
---|
146 | this.testButton.Click += new System.EventHandler(this.testButton_Click);
|
---|
147 | //
|
---|
148 | // normalDistButton
|
---|
149 | //
|
---|
150 | this.normalDistButton.Location = new System.Drawing.Point(3, 3);
|
---|
151 | this.normalDistButton.Name = "normalDistButton";
|
---|
152 | this.normalDistButton.Size = new System.Drawing.Size(166, 23);
|
---|
153 | this.normalDistButton.TabIndex = 11;
|
---|
154 | this.normalDistButton.Text = "Check for Normal Distribution";
|
---|
155 | this.normalDistButton.UseVisualStyleBackColor = true;
|
---|
156 | this.normalDistButton.Click += new System.EventHandler(this.normalDistButton_Click);
|
---|
157 | //
|
---|
158 | // lblPVal
|
---|
159 | //
|
---|
160 | this.lblPVal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
161 | this.lblPVal.AutoSize = true;
|
---|
162 | this.lblPVal.Location = new System.Drawing.Point(311, 8);
|
---|
163 | this.lblPVal.Name = "lblPVal";
|
---|
164 | this.lblPVal.Size = new System.Drawing.Size(46, 13);
|
---|
165 | this.lblPVal.TabIndex = 12;
|
---|
166 | this.lblPVal.Text = "p-Value:";
|
---|
167 | this.lblPVal.TextAlign = System.Drawing.ContentAlignment.TopRight;
|
---|
168 | //
|
---|
169 | // pValTextBox
|
---|
170 | //
|
---|
171 | this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
172 | this.pValTextBox.Location = new System.Drawing.Point(363, 5);
|
---|
173 | this.pValTextBox.Name = "pValTextBox";
|
---|
174 | this.pValTextBox.ReadOnly = true;
|
---|
175 | this.pValTextBox.Size = new System.Drawing.Size(144, 20);
|
---|
176 | this.pValTextBox.TabIndex = 13;
|
---|
177 | //
|
---|
178 | // groupComboBox
|
---|
179 | //
|
---|
180 | this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
181 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
182 | this.groupComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
183 | this.groupComboBox.FormattingEnabled = true;
|
---|
184 | this.groupComboBox.Location = new System.Drawing.Point(62, 3);
|
---|
185 | this.groupComboBox.Name = "groupComboBox";
|
---|
186 | this.groupComboBox.Size = new System.Drawing.Size(377, 21);
|
---|
187 | this.groupComboBox.TabIndex = 14;
|
---|
188 | this.groupComboBox.SelectedValueChanged += new System.EventHandler(this.groupComboBox_SelectedValueChanged);
|
---|
189 | //
|
---|
190 | // normalityDetails
|
---|
191 | //
|
---|
192 | this.normalityDetails.Location = new System.Drawing.Point(175, 3);
|
---|
193 | this.normalityDetails.Name = "normalityDetails";
|
---|
194 | this.normalityDetails.Size = new System.Drawing.Size(181, 23);
|
---|
195 | this.normalityDetails.TabIndex = 15;
|
---|
196 | this.normalityDetails.Text = "Show Details of Normality Test";
|
---|
197 | this.normalityDetails.UseVisualStyleBackColor = true;
|
---|
198 | this.normalityDetails.Click += new System.EventHandler(this.normalityDetails_Click);
|
---|
199 | //
|
---|
200 | // pairwiseTestButton
|
---|
201 | //
|
---|
202 | this.pairwiseTestButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
203 | this.pairwiseTestButton.Location = new System.Drawing.Point(58, 3);
|
---|
204 | this.pairwiseTestButton.Name = "pairwiseTestButton";
|
---|
205 | this.pairwiseTestButton.Size = new System.Drawing.Size(132, 23);
|
---|
206 | this.pairwiseTestButton.TabIndex = 16;
|
---|
207 | this.pairwiseTestButton.Text = "Pairwise Statistical Test";
|
---|
208 | this.pairwiseTestButton.UseVisualStyleBackColor = true;
|
---|
209 | this.pairwiseTestButton.Click += new System.EventHandler(this.pairwiseTestButton_Click);
|
---|
210 | //
|
---|
211 | // infoLabel
|
---|
212 | //
|
---|
213 | this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
214 | this.infoLabel.Image = ((System.Drawing.Image)(resources.GetObject("infoLabel.Image")));
|
---|
215 | this.infoLabel.Location = new System.Drawing.Point(905, 9);
|
---|
216 | this.infoLabel.Name = "infoLabel";
|
---|
217 | this.infoLabel.Size = new System.Drawing.Size(16, 16);
|
---|
218 | this.infoLabel.TabIndex = 17;
|
---|
219 | this.toolTip1.SetToolTip(this.infoLabel, resources.GetString("infoLabel.ToolTip"));
|
---|
220 | this.infoLabel.DoubleClick += new System.EventHandler(this.infoLabel_DoubleClick);
|
---|
221 | //
|
---|
222 | // splitContainer1
|
---|
223 | //
|
---|
224 | this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
225 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
226 | this.splitContainer1.Location = new System.Drawing.Point(8, 3);
|
---|
227 | this.splitContainer1.Name = "splitContainer1";
|
---|
228 | //
|
---|
229 | // splitContainer1.Panel1
|
---|
230 | //
|
---|
231 | this.splitContainer1.Panel1.Controls.Add(this.resultComboBox);
|
---|
232 | this.splitContainer1.Panel1.Controls.Add(this.label1);
|
---|
233 | //
|
---|
234 | // splitContainer1.Panel2
|
---|
235 | //
|
---|
236 | this.splitContainer1.Panel2.Controls.Add(this.groupByLabel);
|
---|
237 | this.splitContainer1.Panel2.Controls.Add(this.groupComboBox);
|
---|
238 | this.splitContainer1.Size = new System.Drawing.Size(891, 29);
|
---|
239 | this.splitContainer1.SplitterDistance = 445;
|
---|
240 | this.splitContainer1.TabIndex = 18;
|
---|
241 | //
|
---|
242 | // splitContainer2
|
---|
243 | //
|
---|
244 | this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
245 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
246 | this.splitContainer2.Location = new System.Drawing.Point(8, 467);
|
---|
247 | this.splitContainer2.Name = "splitContainer2";
|
---|
248 | //
|
---|
249 | // splitContainer2.Panel1
|
---|
250 | //
|
---|
251 | this.splitContainer2.Panel1.Controls.Add(this.normalDistButton);
|
---|
252 | this.splitContainer2.Panel1.Controls.Add(this.normalityDetails);
|
---|
253 | //
|
---|
254 | // splitContainer2.Panel2
|
---|
255 | //
|
---|
256 | this.splitContainer2.Panel2.Controls.Add(this.pairwiseTestButton);
|
---|
257 | this.splitContainer2.Panel2.Controls.Add(this.testButton);
|
---|
258 | this.splitContainer2.Panel2.Controls.Add(this.pValTextBox);
|
---|
259 | this.splitContainer2.Panel2.Controls.Add(this.lblPVal);
|
---|
260 | this.splitContainer2.Size = new System.Drawing.Size(913, 30);
|
---|
261 | this.splitContainer2.SplitterDistance = 399;
|
---|
262 | this.splitContainer2.TabIndex = 19;
|
---|
263 | //
|
---|
264 | // StatisticalTestingView
|
---|
265 | //
|
---|
266 | this.Controls.Add(this.splitContainer2);
|
---|
267 | this.Controls.Add(this.splitContainer1);
|
---|
268 | this.Controls.Add(this.infoLabel);
|
---|
269 | this.Controls.Add(this.stringConvertibleMatrixView);
|
---|
270 | this.Name = "StatisticalTestingView";
|
---|
271 | this.Size = new System.Drawing.Size(924, 500);
|
---|
272 | this.contextMenuStrip1.ResumeLayout(false);
|
---|
273 | this.splitContainer1.Panel1.ResumeLayout(false);
|
---|
274 | this.splitContainer1.Panel1.PerformLayout();
|
---|
275 | this.splitContainer1.Panel2.ResumeLayout(false);
|
---|
276 | this.splitContainer1.Panel2.PerformLayout();
|
---|
277 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
---|
278 | this.splitContainer1.ResumeLayout(false);
|
---|
279 | this.splitContainer2.Panel1.ResumeLayout(false);
|
---|
280 | this.splitContainer2.Panel2.ResumeLayout(false);
|
---|
281 | this.splitContainer2.Panel2.PerformLayout();
|
---|
282 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
|
---|
283 | this.splitContainer2.ResumeLayout(false);
|
---|
284 | this.ResumeLayout(false);
|
---|
285 |
|
---|
286 | }
|
---|
287 | #endregion
|
---|
288 |
|
---|
289 | private HeuristicLab.Data.Views.StringConvertibleMatrixView stringConvertibleMatrixView;
|
---|
290 | private System.Windows.Forms.Label groupByLabel;
|
---|
291 | private System.Windows.Forms.Label label1;
|
---|
292 | private System.Windows.Forms.ComboBox resultComboBox;
|
---|
293 | private System.Windows.Forms.Button testButton;
|
---|
294 | private System.Windows.Forms.Button normalDistButton;
|
---|
295 | private System.Windows.Forms.Label lblPVal;
|
---|
296 | private System.Windows.Forms.TextBox pValTextBox;
|
---|
297 | private System.Windows.Forms.ComboBox groupComboBox;
|
---|
298 | private System.Windows.Forms.Button normalityDetails;
|
---|
299 | private System.Windows.Forms.Button pairwiseTestButton;
|
---|
300 | private System.Windows.Forms.Label infoLabel;
|
---|
301 | private System.Windows.Forms.ToolTip toolTip1;
|
---|
302 | private System.Windows.Forms.SplitContainer splitContainer1;
|
---|
303 | private System.Windows.Forms.SplitContainer splitContainer2;
|
---|
304 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
|
---|
305 | private System.Windows.Forms.ToolStripMenuItem openBoxPlotToolStripMenuItem;
|
---|
306 | }
|
---|
307 | }
|
---|