Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Analysis.Statistics.Views/3.3/SampleSizeInfluenceView.Designer.cs

Last change on this file was 16057, checked in by jkarder, 6 years ago

#2839:

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