Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsConfigurationDialog.Designer.cs @ 17181

Last change on this file since 17181 was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 4.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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
22using HeuristicLab.Data.Views;
23
24namespace HeuristicLab.Analysis.Statistics.Views {
25  partial class StatisticalTestsConfigurationDialog {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    /// <summary>
32    /// Clean up any resources being used.
33    /// </summary>
34    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
35    protected override void Dispose(bool disposing) {
36      if (disposing && (components != null)) {
37        components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42    #region Windows Form Designer generated code
43
44    /// <summary>
45    /// Required method for Designer support - do not modify
46    /// the contents of this method with the code editor.
47    /// </summary>
48    private void InitializeComponent() {
49      this.label1 = new System.Windows.Forms.Label();
50      this.significanceLevelTextBox = new HeuristicLab.Data.Views.StringConvertibleValueView();
51      this.okButton = new System.Windows.Forms.Button();
52      this.SuspendLayout();
53      //
54      // label1
55      //
56      this.label1.AutoSize = true;
57      this.label1.Location = new System.Drawing.Point(12, 14);
58      this.label1.Name = "label1";
59      this.label1.Size = new System.Drawing.Size(97, 13);
60      this.label1.TabIndex = 0;
61      this.label1.Text = "Significance Level:";
62      //
63      // significanceLevelTextBox
64      //
65      this.significanceLevelTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
66            | System.Windows.Forms.AnchorStyles.Right)));
67      this.significanceLevelTextBox.Caption = "StringConvertibleValue View";
68      this.significanceLevelTextBox.Content = null;
69      this.significanceLevelTextBox.LabelVisible = false;
70      this.significanceLevelTextBox.Location = new System.Drawing.Point(115, 12);
71      this.significanceLevelTextBox.Name = "significanceLevelTextBox";
72      this.significanceLevelTextBox.ReadOnly = false;
73      this.significanceLevelTextBox.Size = new System.Drawing.Size(121, 20);
74      this.significanceLevelTextBox.TabIndex = 1;
75      //
76      // okButton
77      //
78      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
79      this.okButton.Location = new System.Drawing.Point(242, 10);
80      this.okButton.Name = "okButton";
81      this.okButton.Size = new System.Drawing.Size(51, 23);
82      this.okButton.TabIndex = 2;
83      this.okButton.Text = "Ok";
84      this.okButton.UseVisualStyleBackColor = true;
85      this.okButton.Click += new System.EventHandler(this.okButton_Click);
86      //
87      // StatisticalTestsConfigurationDialog
88      //
89      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
90      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
91      this.ClientSize = new System.Drawing.Size(305, 42);
92      this.Controls.Add(this.okButton);
93      this.Controls.Add(this.significanceLevelTextBox);
94      this.Controls.Add(this.label1);
95      this.MaximizeBox = false;
96      this.MinimizeBox = false;
97      this.Name = "StatisticalTestsConfigurationDialog";
98      this.ShowIcon = false;
99      this.ShowInTaskbar = false;
100      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
101      this.Text = "Statistical Tests Configuration";
102      this.TopMost = true;
103      this.ResumeLayout(false);
104      this.PerformLayout();
105
106    }
107
108    #endregion
109
110    private System.Windows.Forms.Label label1;
111    private StringConvertibleValueView significanceLevelTextBox;
112    private System.Windows.Forms.Button okButton;
113  }
114}
Note: See TracBrowser for help on using the repository browser.