Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.VariableInteractionNetworks/HeuristicLab.VariableInteractionNetworks/3.3/CreateTargetVariationExperimentDialog.Designer.cs @ 13806

Last change on this file since 13806 was 13806, checked in by bburlacu, 8 years ago

#2288: Remove TinySet.cs in favor of a more general method for generating k-combinations. Improve target variation experiment generation. Refactored code and avoided some corner case exceptions.

File size: 8.2 KB
Line 
1namespace HeuristicLab.VariableInteractionNetworks
2{
3    partial class CreateTargetVariationExperimentDialog
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Windows Form Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31      this.repetitionsNumericUpDown = new System.Windows.Forms.NumericUpDown();
32      this.repetitionsLabel = new System.Windows.Forms.Label();
33      this.cancelButton = new System.Windows.Forms.Button();
34      this.okButton = new System.Windows.Forms.Button();
35      this.combinationGroupSizeNumericUpDown = new System.Windows.Forms.NumericUpDown();
36      this.label1 = new System.Windows.Forms.Label();
37      this.warningLabel = new System.Windows.Forms.Label();
38      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
39      ((System.ComponentModel.ISupportInitialize)(this.combinationGroupSizeNumericUpDown)).BeginInit();
40      this.SuspendLayout();
41      //
42      // repetitionsNumericUpDown
43      //
44      this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
45            | System.Windows.Forms.AnchorStyles.Right)));
46      this.repetitionsNumericUpDown.Location = new System.Drawing.Point(128, 12);
47      this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
48            1000000,
49            0,
50            0,
51            0});
52      this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
53            1,
54            0,
55            0,
56            0});
57      this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
58      this.repetitionsNumericUpDown.Size = new System.Drawing.Size(185, 20);
59      this.repetitionsNumericUpDown.TabIndex = 4;
60      this.repetitionsNumericUpDown.ThousandsSeparator = true;
61      this.repetitionsNumericUpDown.Value = new decimal(new int[] {
62            10,
63            0,
64            0,
65            0});
66      this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
67      //
68      // repetitionsLabel
69      //
70      this.repetitionsLabel.AutoSize = true;
71      this.repetitionsLabel.Location = new System.Drawing.Point(26, 14);
72      this.repetitionsLabel.Name = "repetitionsLabel";
73      this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
74      this.repetitionsLabel.TabIndex = 5;
75      this.repetitionsLabel.Text = "&Repetitions:";
76      //
77      // cancelButton
78      //
79      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
80      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
81      this.cancelButton.Location = new System.Drawing.Point(177, 130);
82      this.cancelButton.Name = "cancelButton";
83      this.cancelButton.Size = new System.Drawing.Size(75, 23);
84      this.cancelButton.TabIndex = 9;
85      this.cancelButton.Text = "&Cancel";
86      this.cancelButton.UseVisualStyleBackColor = true;
87      //
88      // okButton
89      //
90      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
91      this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
92      this.okButton.Location = new System.Drawing.Point(80, 130);
93      this.okButton.Name = "okButton";
94      this.okButton.Size = new System.Drawing.Size(75, 23);
95      this.okButton.TabIndex = 10;
96      this.okButton.Text = "&Ok";
97      this.okButton.UseVisualStyleBackColor = true;
98      this.okButton.Click += new System.EventHandler(this.okButton_Click);
99      //
100      // combinationGroupSizeNumericUpDown
101      //
102      this.combinationGroupSizeNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
103            | System.Windows.Forms.AnchorStyles.Right)));
104      this.combinationGroupSizeNumericUpDown.Location = new System.Drawing.Point(128, 38);
105      this.combinationGroupSizeNumericUpDown.Maximum = new decimal(new int[] {
106            1000000,
107            0,
108            0,
109            0});
110      this.combinationGroupSizeNumericUpDown.Minimum = new decimal(new int[] {
111            1,
112            0,
113            0,
114            0});
115      this.combinationGroupSizeNumericUpDown.Name = "combinationGroupSizeNumericUpDown";
116      this.combinationGroupSizeNumericUpDown.Size = new System.Drawing.Size(185, 20);
117      this.combinationGroupSizeNumericUpDown.TabIndex = 4;
118      this.combinationGroupSizeNumericUpDown.ThousandsSeparator = true;
119      this.combinationGroupSizeNumericUpDown.Value = new decimal(new int[] {
120            10,
121            0,
122            0,
123            0});
124      this.combinationGroupSizeNumericUpDown.ValueChanged += new System.EventHandler(this.combinationGroupSizeNumericUpDown_Validated);
125      this.combinationGroupSizeNumericUpDown.Validating += new System.ComponentModel.CancelEventHandler(this.combinationGroupSizeNumericUpDown_Validating);
126      this.combinationGroupSizeNumericUpDown.Validated += new System.EventHandler(this.combinationGroupSizeNumericUpDown_Validated);
127      //
128      // label1
129      //
130      this.label1.AutoSize = true;
131      this.label1.Location = new System.Drawing.Point(26, 40);
132      this.label1.Name = "label1";
133      this.label1.Size = new System.Drawing.Size(60, 13);
134      this.label1.TabIndex = 5;
135      this.label1.Text = "&Group size:";
136      //
137      // warningLabel
138      //
139      this.warningLabel.ForeColor = System.Drawing.Color.Red;
140      this.warningLabel.Location = new System.Drawing.Point(26, 67);
141      this.warningLabel.Name = "warningLabel";
142      this.warningLabel.Size = new System.Drawing.Size(287, 50);
143      this.warningLabel.TabIndex = 5;
144      this.warningLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
145      //
146      // CreateTargetVariationExperimentDialog
147      //
148      this.AcceptButton = this.okButton;
149      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
150      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
151      this.CancelButton = this.cancelButton;
152      this.ClientSize = new System.Drawing.Size(349, 165);
153      this.Controls.Add(this.okButton);
154      this.Controls.Add(this.cancelButton);
155      this.Controls.Add(this.warningLabel);
156      this.Controls.Add(this.label1);
157      this.Controls.Add(this.repetitionsLabel);
158      this.Controls.Add(this.combinationGroupSizeNumericUpDown);
159      this.Controls.Add(this.repetitionsNumericUpDown);
160      this.Name = "CreateTargetVariationExperimentDialog";
161      this.Text = "Create Target Variation Experiment";
162      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
163      ((System.ComponentModel.ISupportInitialize)(this.combinationGroupSizeNumericUpDown)).EndInit();
164      this.ResumeLayout(false);
165      this.PerformLayout();
166
167        }
168
169        #endregion
170
171        private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
172        private System.Windows.Forms.Label repetitionsLabel;
173        private System.Windows.Forms.Button cancelButton;
174        private System.Windows.Forms.Button okButton;
175    private System.Windows.Forms.NumericUpDown combinationGroupSizeNumericUpDown;
176    private System.Windows.Forms.Label label1;
177    private System.Windows.Forms.Label warningLabel;
178  }
179}
Note: See TracBrowser for help on using the repository browser.