[5144] | 1 | namespace HeuristicLab.Problems.MetaOptimization.Views {
|
---|
| 2 | partial class MetaOptimizationProblemView {
|
---|
| 3 | /// <summary>
|
---|
| 4 | /// Required designer variable.
|
---|
| 5 | /// </summary>
|
---|
| 6 | private System.ComponentModel.IContainer components = null;
|
---|
| 7 |
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Clean up any resources being used.
|
---|
| 10 | /// </summary>
|
---|
| 11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 12 | protected override void Dispose(bool disposing) {
|
---|
| 13 | if (disposing && (components != null)) {
|
---|
| 14 | components.Dispose();
|
---|
| 15 | }
|
---|
| 16 | base.Dispose(disposing);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | #region Component Designer generated code
|
---|
| 20 |
|
---|
| 21 | /// <summary>
|
---|
| 22 | /// Required method for Designer support - do not modify
|
---|
| 23 | /// the contents of this method with the code editor.
|
---|
| 24 | /// </summary>
|
---|
| 25 | private void InitializeComponent() {
|
---|
| 26 | this.createExperimentButton = new System.Windows.Forms.Button();
|
---|
| 27 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 28 | this.SuspendLayout();
|
---|
| 29 | //
|
---|
| 30 | // parameterCollectionView
|
---|
| 31 | //
|
---|
[5313] | 32 | this.parameterCollectionView.AllowDrop = true;
|
---|
[5927] | 33 | this.parameterCollectionView.Size = new System.Drawing.Size(604, 373);
|
---|
[5313] | 34 | this.parameterCollectionView.DragDrop += new System.Windows.Forms.DragEventHandler(this.parameterCollectionView_DragDrop);
|
---|
| 35 | this.parameterCollectionView.DragEnter += new System.Windows.Forms.DragEventHandler(this.parameterCollectionView_DragEnterOver);
|
---|
| 36 | this.parameterCollectionView.DragOver += new System.Windows.Forms.DragEventHandler(this.parameterCollectionView_DragEnterOver);
|
---|
[5144] | 37 | //
|
---|
| 38 | // nameTextBox
|
---|
| 39 | //
|
---|
| 40 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 41 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
[5927] | 42 | this.nameTextBox.Size = new System.Drawing.Size(542, 20);
|
---|
[5144] | 43 | //
|
---|
| 44 | // createExperimentButton
|
---|
| 45 | //
|
---|
| 46 | this.createExperimentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 47 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[5927] | 48 | this.createExperimentButton.Location = new System.Drawing.Point(0, 405);
|
---|
[5144] | 49 | this.createExperimentButton.Name = "createExperimentButton";
|
---|
[5313] | 50 | this.createExperimentButton.Size = new System.Drawing.Size(604, 24);
|
---|
[5144] | 51 | this.createExperimentButton.TabIndex = 5;
|
---|
[5313] | 52 | this.createExperimentButton.Text = "Create Combinations";
|
---|
[5144] | 53 | this.createExperimentButton.UseVisualStyleBackColor = true;
|
---|
| 54 | this.createExperimentButton.Click += new System.EventHandler(this.createExperimentButton_Click);
|
---|
| 55 | //
|
---|
| 56 | // MetaOptimizationProblemView
|
---|
| 57 | //
|
---|
| 58 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 59 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 60 | this.Controls.Add(this.createExperimentButton);
|
---|
| 61 | this.Name = "MetaOptimizationProblemView";
|
---|
[5927] | 62 | this.Size = new System.Drawing.Size(604, 431);
|
---|
[5144] | 63 | this.Controls.SetChildIndex(this.createExperimentButton, 0);
|
---|
[5927] | 64 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
[5144] | 65 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 66 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 67 | this.Controls.SetChildIndex(this.parameterCollectionView, 0);
|
---|
| 68 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 69 | this.ResumeLayout(false);
|
---|
| 70 | this.PerformLayout();
|
---|
| 71 |
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | #endregion
|
---|
| 75 |
|
---|
| 76 | private System.Windows.Forms.Button createExperimentButton;
|
---|
| 77 | }
|
---|
| 78 | }
|
---|