Free cookie consent management tool by TermsFeed Policy Generator

source: branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/SampleSizeInfluenceView.Designer.cs @ 10473

Last change on this file since 10473 was 10017, checked in by ascheibe, 11 years ago

#2031 improved sample size estimation and some minor improvements

File size: 14.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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
22namespace HeuristicLab.Analysis.Statistics {
23  partial class SampleSizeInfluenceView {
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 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      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
49      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
50      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SampleSizeInfluenceView));
51      this.xAxisLabel = new System.Windows.Forms.Label();
52      this.yAxisLabel = new System.Windows.Forms.Label();
53      this.yAxisComboBox = new System.Windows.Forms.ComboBox();
54      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
55      this.noRunsLabel = new System.Windows.Forms.Label();
56      this.splitContainer = new System.Windows.Forms.SplitContainer();
57      this.sampleSizeTextBox = new System.Windows.Forms.TextBox();
58      this.xAxisComboBox = new System.Windows.Forms.TextBox();
59      this.defineSampleSizeButton = new System.Windows.Forms.Button();
60      this.showStatisticsCheckBox = new System.Windows.Forms.CheckBox();
61      this.statisticsGroupBox = new System.Windows.Forms.GroupBox();
62      this.statisticsMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
63      this.tooltip = new System.Windows.Forms.ToolTip(this.components);
64      this.label1 = new System.Windows.Forms.Label();
65      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
66      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
67      this.splitContainer.Panel1.SuspendLayout();
68      this.splitContainer.Panel2.SuspendLayout();
69      this.splitContainer.SuspendLayout();
70      this.statisticsGroupBox.SuspendLayout();
71      this.SuspendLayout();
72      //
73      // xAxisLabel
74      //
75      this.xAxisLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76      this.xAxisLabel.AutoSize = true;
77      this.xAxisLabel.Location = new System.Drawing.Point(139, 256);
78      this.xAxisLabel.Name = "xAxisLabel";
79      this.xAxisLabel.Size = new System.Drawing.Size(62, 13);
80      this.xAxisLabel.TabIndex = 12;
81      this.xAxisLabel.Text = "Group Size:";
82      //
83      // yAxisLabel
84      //
85      this.yAxisLabel.AutoSize = true;
86      this.yAxisLabel.Location = new System.Drawing.Point(3, 6);
87      this.yAxisLabel.Name = "yAxisLabel";
88      this.yAxisLabel.Size = new System.Drawing.Size(15, 13);
89      this.yAxisLabel.TabIndex = 10;
90      this.yAxisLabel.Text = "y:";
91      //
92      // yAxisComboBox
93      //
94      this.yAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
95      this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
96      this.yAxisComboBox.FormattingEnabled = true;
97      this.yAxisComboBox.Location = new System.Drawing.Point(24, 3);
98      this.yAxisComboBox.Name = "yAxisComboBox";
99      this.yAxisComboBox.Size = new System.Drawing.Size(221, 21);
100      this.yAxisComboBox.TabIndex = 9;
101      this.yAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged);
102      //
103      // chart
104      //
105      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
106            | System.Windows.Forms.AnchorStyles.Left)
107            | System.Windows.Forms.AnchorStyles.Right)));
108      chartArea1.Name = "ChartArea1";
109      this.chart.ChartAreas.Add(chartArea1);
110      this.chart.Location = new System.Drawing.Point(6, 30);
111      this.chart.Name = "chart";
112      series1.ChartArea = "ChartArea1";
113      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
114      series1.IsVisibleInLegend = false;
115      series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
116      series1.Name = "DataSeries";
117      series1.YValuesPerPoint = 6;
118      this.chart.Series.Add(series1);
119      this.chart.Size = new System.Drawing.Size(534, 217);
120      this.chart.TabIndex = 17;
121      this.chart.Text = "chart";
122      this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(this.chart_AxisViewChanged);
123      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
124      //
125      // noRunsLabel
126      //
127      this.noRunsLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
128      this.noRunsLabel.AutoSize = true;
129      this.noRunsLabel.Location = new System.Drawing.Point(212, 122);
130      this.noRunsLabel.Name = "noRunsLabel";
131      this.noRunsLabel.Size = new System.Drawing.Size(138, 13);
132      this.noRunsLabel.TabIndex = 22;
133      this.noRunsLabel.Text = "No runs could be displayed.";
134      //
135      // splitContainer
136      //
137      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
138      this.splitContainer.Location = new System.Drawing.Point(0, 0);
139      this.splitContainer.Name = "splitContainer";
140      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
141      //
142      // splitContainer.Panel1
143      //
144      this.splitContainer.Panel1.Controls.Add(this.sampleSizeTextBox);
145      this.splitContainer.Panel1.Controls.Add(this.xAxisComboBox);
146      this.splitContainer.Panel1.Controls.Add(this.defineSampleSizeButton);
147      this.splitContainer.Panel1.Controls.Add(this.showStatisticsCheckBox);
148      this.splitContainer.Panel1.Controls.Add(this.xAxisLabel);
149      this.splitContainer.Panel1.Controls.Add(this.noRunsLabel);
150      this.splitContainer.Panel1.Controls.Add(this.yAxisLabel);
151      this.splitContainer.Panel1.Controls.Add(this.yAxisComboBox);
152      this.splitContainer.Panel1.Controls.Add(this.chart);
153      //
154      // splitContainer.Panel2
155      //
156      this.splitContainer.Panel2.Controls.Add(this.statisticsGroupBox);
157      this.splitContainer.Size = new System.Drawing.Size(543, 416);
158      this.splitContainer.SplitterDistance = 277;
159      this.splitContainer.TabIndex = 23;
160      //
161      // sampleSizeTextBox
162      //
163      this.sampleSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
164            | System.Windows.Forms.AnchorStyles.Right)));
165      this.sampleSizeTextBox.Location = new System.Drawing.Point(400, 3);
166      this.sampleSizeTextBox.Name = "sampleSizeTextBox";
167      this.sampleSizeTextBox.ReadOnly = true;
168      this.sampleSizeTextBox.Size = new System.Drawing.Size(140, 20);
169      this.sampleSizeTextBox.TabIndex = 26;
170      //
171      // xAxisComboBox
172      //
173      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
174      this.xAxisComboBox.Location = new System.Drawing.Point(207, 253);
175      this.xAxisComboBox.Name = "xAxisComboBox";
176      this.xAxisComboBox.Size = new System.Drawing.Size(238, 20);
177      this.xAxisComboBox.TabIndex = 25;
178      this.xAxisComboBox.TextChanged += new System.EventHandler(this.xAxisComboBox_TextChanged);
179      //
180      // defineSampleSizeButton
181      //
182      this.defineSampleSizeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
183      this.defineSampleSizeButton.Location = new System.Drawing.Point(451, 252);
184      this.defineSampleSizeButton.Name = "defineSampleSizeButton";
185      this.defineSampleSizeButton.Size = new System.Drawing.Size(89, 21);
186      this.defineSampleSizeButton.TabIndex = 24;
187      this.defineSampleSizeButton.Text = "Set Group Size";
188      this.defineSampleSizeButton.UseVisualStyleBackColor = true;
189      this.defineSampleSizeButton.Click += new System.EventHandler(this.defineSampleSizeButton_Click);
190      //
191      // showStatisticsCheckBox
192      //
193      this.showStatisticsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
194      this.showStatisticsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
195      this.showStatisticsCheckBox.Checked = true;
196      this.showStatisticsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
197      this.showStatisticsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
198      this.showStatisticsCheckBox.Location = new System.Drawing.Point(6, 245);
199      this.showStatisticsCheckBox.Name = "showStatisticsCheckBox";
200      this.showStatisticsCheckBox.Size = new System.Drawing.Size(24, 24);
201      this.showStatisticsCheckBox.TabIndex = 23;
202      this.tooltip.SetToolTip(this.showStatisticsCheckBox, "Show/Hide Statistics");
203      this.showStatisticsCheckBox.UseVisualStyleBackColor = true;
204      this.showStatisticsCheckBox.CheckedChanged += new System.EventHandler(this.showStatisticsCheckBox_CheckedChanged);
205      //
206      // statisticsGroupBox
207      //
208      this.statisticsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
209            | System.Windows.Forms.AnchorStyles.Left)
210            | System.Windows.Forms.AnchorStyles.Right)));
211      this.statisticsGroupBox.Controls.Add(this.statisticsMatrixView);
212      this.statisticsGroupBox.Location = new System.Drawing.Point(3, 3);
213      this.statisticsGroupBox.Name = "statisticsGroupBox";
214      this.statisticsGroupBox.Size = new System.Drawing.Size(534, 129);
215      this.statisticsGroupBox.TabIndex = 1;
216      this.statisticsGroupBox.TabStop = false;
217      this.statisticsGroupBox.Text = "Statistics";
218      //
219      // statisticsMatrixView
220      //
221      this.statisticsMatrixView.Caption = "StringConvertibleMatrix View";
222      this.statisticsMatrixView.Content = null;
223      this.statisticsMatrixView.Dock = System.Windows.Forms.DockStyle.Fill;
224      this.statisticsMatrixView.Location = new System.Drawing.Point(3, 16);
225      this.statisticsMatrixView.Name = "statisticsMatrixView";
226      this.statisticsMatrixView.ReadOnly = true;
227      this.statisticsMatrixView.ShowRowsAndColumnsTextBox = false;
228      this.statisticsMatrixView.ShowStatisticalInformation = false;
229      this.statisticsMatrixView.Size = new System.Drawing.Size(528, 110);
230      this.statisticsMatrixView.TabIndex = 0;
231      //
232      // label1
233      //
234      this.label1.AutoSize = true;
235      this.label1.Location = new System.Drawing.Point(251, 6);
236      this.label1.Name = "label1";
237      this.label1.Size = new System.Drawing.Size(143, 13);
238      this.label1.TabIndex = 26;
239      this.label1.Text = "Recommended Sample Size:";
240      //
241      // SampleSizeInfluenceView
242      //
243      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
244      this.BackColor = System.Drawing.SystemColors.Window;
245      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
246      this.Controls.Add(this.label1);
247      this.Controls.Add(this.splitContainer);
248      this.Name = "SampleSizeInfluenceView";
249      this.Size = new System.Drawing.Size(543, 416);
250      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
251      this.splitContainer.Panel1.ResumeLayout(false);
252      this.splitContainer.Panel1.PerformLayout();
253      this.splitContainer.Panel2.ResumeLayout(false);
254      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
255      this.splitContainer.ResumeLayout(false);
256      this.statisticsGroupBox.ResumeLayout(false);
257      this.ResumeLayout(false);
258      this.PerformLayout();
259
260    }
261
262    #endregion
263
264    private System.Windows.Forms.Label xAxisLabel;
265    private System.Windows.Forms.Label yAxisLabel;
266    internal System.Windows.Forms.ComboBox yAxisComboBox;
267    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
268    private System.Windows.Forms.Label noRunsLabel;
269    private System.Windows.Forms.SplitContainer splitContainer;
270    private Data.Views.StringConvertibleMatrixView statisticsMatrixView;
271    private System.Windows.Forms.GroupBox statisticsGroupBox;
272    private System.Windows.Forms.ToolTip tooltip;
273    protected System.Windows.Forms.CheckBox showStatisticsCheckBox;
274    private System.Windows.Forms.Button defineSampleSizeButton;
275    private System.Windows.Forms.TextBox xAxisComboBox;
276    private System.Windows.Forms.Label label1;
277    private System.Windows.Forms.TextBox sampleSizeTextBox;
278  }
279}
Note: See TracBrowser for help on using the repository browser.