Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 12320 was 12320, checked in by arapeanu, 9 years ago

#2288: Added sliders functionality, dialog box for setting the number of repetitions for each batch + modified node importance weighting

File size: 5.6 KB
RevLine 
[12320]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            ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
36            this.SuspendLayout();
37            //
38            // repetitionsNumericUpDown
39            //
40            this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
41            | System.Windows.Forms.AnchorStyles.Right)));
42            this.repetitionsNumericUpDown.Location = new System.Drawing.Point(108, 12);
43            this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
44            1000000,
45            0,
46            0,
47            0});
48            this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
49            1,
50            0,
51            0,
52            0});
53            this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
54            this.repetitionsNumericUpDown.Size = new System.Drawing.Size(185, 20);
55            this.repetitionsNumericUpDown.TabIndex = 4;
56            this.repetitionsNumericUpDown.ThousandsSeparator = true;
57            this.repetitionsNumericUpDown.Value = new decimal(new int[] {
58            10,
59            0,
60            0,
61            0});
62            this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
63            //
64            // repetitionsLabel
65            //
66            this.repetitionsLabel.AutoSize = true;
67            this.repetitionsLabel.Location = new System.Drawing.Point(26, 14);
68            this.repetitionsLabel.Name = "repetitionsLabel";
69            this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
70            this.repetitionsLabel.TabIndex = 5;
71            this.repetitionsLabel.Text = "&Repetitions:";
72            //
73            // cancelButton
74            //
75            this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76            this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
77            this.cancelButton.Location = new System.Drawing.Point(177, 48);
78            this.cancelButton.Name = "cancelButton";
79            this.cancelButton.Size = new System.Drawing.Size(75, 23);
80            this.cancelButton.TabIndex = 9;
81            this.cancelButton.Text = "&Cancel";
82            this.cancelButton.UseVisualStyleBackColor = true;
83            //
84            // okButton
85            //
86            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
87            this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
88            this.okButton.Location = new System.Drawing.Point(80, 48);
89            this.okButton.Name = "okButton";
90            this.okButton.Size = new System.Drawing.Size(75, 23);
91            this.okButton.TabIndex = 10;
92            this.okButton.Text = "&Ok";
93            this.okButton.UseVisualStyleBackColor = true;
94            this.okButton.Click += new System.EventHandler(this.okButton_Click);
95            //
96            // CreateTargetVariationExperimentDialog
97            //
98            this.AcceptButton = this.okButton;
99            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101            this.CancelButton = this.cancelButton;
102            this.ClientSize = new System.Drawing.Size(349, 83);
103            this.Controls.Add(this.okButton);
104            this.Controls.Add(this.cancelButton);
105            this.Controls.Add(this.repetitionsLabel);
106            this.Controls.Add(this.repetitionsNumericUpDown);
107            this.Name = "CreateTargetVariationExperimentDialog";
108            this.Text = "Create Target Variation Experiment";
109            ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
110            this.ResumeLayout(false);
111            this.PerformLayout();
112
113        }
114
115        #endregion
116
117        private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
118        private System.Windows.Forms.Label repetitionsLabel;
119        private System.Windows.Forms.Button cancelButton;
120        private System.Windows.Forms.Button okButton;
121    }
122}
Note: See TracBrowser for help on using the repository browser.