#region License Information /* HeuristicLab * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.Analysis.Statistics { partial class SampleSizeChecker { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView(); this.label1 = new System.Windows.Forms.Label(); this.resultComboBox = new System.Windows.Forms.ComboBox(); this.estimateSampleSizeButton = new System.Windows.Forms.Button(); this.precisionTextBox = new System.Windows.Forms.TextBox(); this.confIntervalTextBox = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // stringConvertibleMatrixView // this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; this.stringConvertibleMatrixView.Content = null; this.stringConvertibleMatrixView.Location = new System.Drawing.Point(3, 30); this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView"; this.stringConvertibleMatrixView.ReadOnly = false; this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false; this.stringConvertibleMatrixView.ShowStatisticalInformation = true; this.stringConvertibleMatrixView.Size = new System.Drawing.Size(746, 329); this.stringConvertibleMatrixView.TabIndex = 0; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(5, 6); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 13); this.label1.TabIndex = 6; this.label1.Text = "Result:"; // // resultComboBox // this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.resultComboBox.FormattingEnabled = true; this.resultComboBox.Location = new System.Drawing.Point(71, 3); this.resultComboBox.Name = "resultComboBox"; this.resultComboBox.Size = new System.Drawing.Size(678, 21); this.resultComboBox.TabIndex = 5; this.resultComboBox.SelectedValueChanged += new System.EventHandler(this.resultComboBox_SelectedValueChanged); // // estimateSampleSizeButton // this.estimateSampleSizeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.estimateSampleSizeButton.Location = new System.Drawing.Point(630, 365); this.estimateSampleSizeButton.Name = "estimateSampleSizeButton"; this.estimateSampleSizeButton.Size = new System.Drawing.Size(119, 23); this.estimateSampleSizeButton.TabIndex = 9; this.estimateSampleSizeButton.Text = "Estimate sample size"; this.estimateSampleSizeButton.UseVisualStyleBackColor = true; this.estimateSampleSizeButton.Click += new System.EventHandler(this.estimateSampleSizeButton_Click); // // precisionTextBox // this.precisionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.precisionTextBox.Location = new System.Drawing.Point(64, 367); this.precisionTextBox.Name = "precisionTextBox"; this.precisionTextBox.Size = new System.Drawing.Size(106, 20); this.precisionTextBox.TabIndex = 10; // // confIntervalTextBox // this.confIntervalTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.confIntervalTextBox.Location = new System.Drawing.Point(331, 368); this.confIntervalTextBox.Name = "confIntervalTextBox"; this.confIntervalTextBox.Size = new System.Drawing.Size(100, 20); this.confIntervalTextBox.TabIndex = 11; // // label2 // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(5, 370); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(53, 13); this.label2.TabIndex = 12; this.label2.Text = "Precision:"; // // label3 // this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(223, 370); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(102, 13); this.label3.TabIndex = 13; this.label3.Text = "Confidence Interval:"; // // SampleSizeChecker // this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.confIntervalTextBox); this.Controls.Add(this.precisionTextBox); this.Controls.Add(this.estimateSampleSizeButton); this.Controls.Add(this.label1); this.Controls.Add(this.resultComboBox); this.Controls.Add(this.stringConvertibleMatrixView); this.Name = "SampleSizeChecker"; this.Size = new System.Drawing.Size(752, 391); this.ResumeLayout(false); this.PerformLayout(); } #endregion private HeuristicLab.Data.Views.StringConvertibleMatrixView stringConvertibleMatrixView; private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox resultComboBox; private System.Windows.Forms.Button estimateSampleSizeButton; private System.Windows.Forms.TextBox precisionTextBox; private System.Windows.Forms.TextBox confIntervalTextBox; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; } }