[7683] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2012 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 |
|
---|
| 22 | namespace HeuristicLab.Problems.Instances.Views {
|
---|
[7684] | 23 | partial class ProblemInstanceProviderViewGeneric<T> {
|
---|
[7683] | 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
| 47 | this.components = new System.ComponentModel.Container();
|
---|
| 48 | this.instanceLabel = new System.Windows.Forms.Label();
|
---|
| 49 | this.instancesComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 50 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
| 51 | this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
---|
| 52 | this.SuspendLayout();
|
---|
| 53 | //
|
---|
| 54 | // instanceLabel
|
---|
| 55 | //
|
---|
| 56 | this.instanceLabel.AutoSize = true;
|
---|
| 57 | this.instanceLabel.Location = new System.Drawing.Point(3, 4);
|
---|
| 58 | this.instanceLabel.Name = "instanceLabel";
|
---|
| 59 | this.instanceLabel.Size = new System.Drawing.Size(51, 13);
|
---|
| 60 | this.instanceLabel.TabIndex = 4;
|
---|
| 61 | this.instanceLabel.Text = "Instance:";
|
---|
| 62 | //
|
---|
| 63 | // instancesComboBox
|
---|
| 64 | //
|
---|
[8196] | 65 | this.instancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7683] | 66 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 67 | this.instancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 68 | this.instancesComboBox.FormattingEnabled = true;
|
---|
| 69 | this.instancesComboBox.Location = new System.Drawing.Point(60, 1);
|
---|
| 70 | this.instancesComboBox.Name = "instancesComboBox";
|
---|
[8196] | 71 | this.instancesComboBox.Size = new System.Drawing.Size(632, 21);
|
---|
[7683] | 72 | this.instancesComboBox.TabIndex = 7;
|
---|
[7956] | 73 | this.instancesComboBox.DataSourceChanged += new System.EventHandler(this.instancesComboBox_DataSourceChanged);
|
---|
[8196] | 74 | this.instancesComboBox.SelectionChangeCommitted += new System.EventHandler(instancesComboBox_SelectionChangeCommitted);
|
---|
[7683] | 75 | //
|
---|
| 76 | // openFileDialog
|
---|
| 77 | //
|
---|
| 78 | this.openFileDialog.Filter = "All files|*.*";
|
---|
| 79 | //
|
---|
| 80 | // saveFileDialog
|
---|
| 81 | //
|
---|
| 82 | this.saveFileDialog.Filter = "CSV files|*.csv|All files|*.*";
|
---|
| 83 | this.saveFileDialog.Title = "Save RegressionInstance...";
|
---|
| 84 | //
|
---|
[7956] | 85 | // ProblemInstanceProviderViewGeneric
|
---|
[7683] | 86 | //
|
---|
| 87 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 88 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[7956] | 89 | this.Controls.Add(this.instanceLabel);
|
---|
| 90 | this.Controls.Add(this.instancesComboBox);
|
---|
| 91 | this.Name = "ProblemInstanceProviderViewGeneric";
|
---|
[7683] | 92 | this.Size = new System.Drawing.Size(694, 21);
|
---|
| 93 | this.ResumeLayout(false);
|
---|
[7956] | 94 | this.PerformLayout();
|
---|
[7683] | 95 |
|
---|
| 96 | }
|
---|
| 97 | #endregion
|
---|
| 98 |
|
---|
[7758] | 99 | protected System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
[7683] | 100 | protected System.Windows.Forms.Label instanceLabel;
|
---|
| 101 | protected System.Windows.Forms.ComboBox instancesComboBox;
|
---|
[7758] | 102 | protected System.Windows.Forms.SaveFileDialog saveFileDialog;
|
---|
[7683] | 103 | }
|
---|
| 104 | }
|
---|