#region License Information /* HeuristicLab * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views { partial class ProblemInstanceProviderView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.loadButton = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.instancesComboBox = new System.Windows.Forms.ComboBox(); this.importButton = new System.Windows.Forms.Button(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.SuspendLayout(); // // loadButton // this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.loadButton.Location = new System.Drawing.Point(451, -1); this.loadButton.Name = "loadButton"; this.loadButton.Size = new System.Drawing.Size(75, 23); this.loadButton.TabIndex = 6; this.loadButton.Text = "Load"; this.loadButton.UseVisualStyleBackColor = true; this.loadButton.Click += new System.EventHandler(this.loadButton_Click); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(-3, 3); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(51, 13); this.label2.TabIndex = 4; this.label2.Text = "Instance:"; // // instancesComboBox // this.instancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.instancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.instancesComboBox.FormattingEnabled = true; this.instancesComboBox.Location = new System.Drawing.Point(54, 0); this.instancesComboBox.Name = "instancesComboBox"; this.instancesComboBox.Size = new System.Drawing.Size(391, 21); this.instancesComboBox.TabIndex = 7; this.instancesComboBox.DataSourceChanged += new System.EventHandler(this.comboBox_DataSourceChanged); // // importButton // this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.importButton.Location = new System.Drawing.Point(532, -1); this.importButton.Name = "importButton"; this.importButton.Size = new System.Drawing.Size(75, 23); this.importButton.TabIndex = 6; this.importButton.Text = "Import"; this.importButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.importButton.UseVisualStyleBackColor = true; this.importButton.Click += new System.EventHandler(this.importButton_Click); // // openFileDialog // this.openFileDialog.Filter = "All files|*.*"; // // ProblemInstanceProviderView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.instancesComboBox); this.Controls.Add(this.importButton); this.Controls.Add(this.loadButton); this.Controls.Add(this.label2); this.Name = "ProblemInstanceProviderView"; this.Size = new System.Drawing.Size(610, 21); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button loadButton; private System.Windows.Forms.Label label2; private System.Windows.Forms.ComboBox instancesComboBox; private System.Windows.Forms.Button importButton; private System.Windows.Forms.OpenFileDialog openFileDialog; } }