#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.Instances.Views { partial class ProblemInstanceProviderViewGeneric { /// /// 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.components = new System.ComponentModel.Container(); this.loadButton = new System.Windows.Forms.Button(); this.instanceLabel = 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.toolTip = new System.Windows.Forms.ToolTip(this.components); this.exportButton = new System.Windows.Forms.Button(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.problemInstanceProviderSplitContainer = new System.Windows.Forms.SplitContainer(); ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).BeginInit(); this.problemInstanceProviderSplitContainer.Panel1.SuspendLayout(); this.problemInstanceProviderSplitContainer.Panel2.SuspendLayout(); this.problemInstanceProviderSplitContainer.SuspendLayout(); 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(604, 0); this.loadButton.Name = "loadButton"; this.loadButton.Size = new System.Drawing.Size(26, 23); this.loadButton.TabIndex = 6; this.loadButton.Text = "Load"; this.loadButton.UseVisualStyleBackColor = true; this.loadButton.Click += new System.EventHandler(this.loadButton_Click); // // instanceLabel // this.instanceLabel.AutoSize = true; this.instanceLabel.Location = new System.Drawing.Point(3, 4); this.instanceLabel.Name = "instanceLabel"; this.instanceLabel.Size = new System.Drawing.Size(51, 13); this.instanceLabel.TabIndex = 4; this.instanceLabel.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(60, 1); this.instancesComboBox.Name = "instancesComboBox"; this.instancesComboBox.Size = new System.Drawing.Size(538, 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(636, 0); this.importButton.Name = "importButton"; this.importButton.Size = new System.Drawing.Size(26, 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|*.*"; // // exportButton // this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.exportButton.Location = new System.Drawing.Point(-1, 0); this.exportButton.Name = "exportButton"; this.exportButton.Size = new System.Drawing.Size(26, 23); this.exportButton.TabIndex = 8; this.exportButton.Text = "Export"; this.exportButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.exportButton.UseVisualStyleBackColor = true; this.exportButton.Click += new System.EventHandler(this.exportButton_Click); // // saveFileDialog // this.saveFileDialog.Filter = "CSV files|*.csv|All files|*.*"; this.saveFileDialog.Title = "Save RegressionInstance..."; // // problemInstanceProviderSplitContainer // this.problemInstanceProviderSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.problemInstanceProviderSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; this.problemInstanceProviderSplitContainer.IsSplitterFixed = true; this.problemInstanceProviderSplitContainer.Location = new System.Drawing.Point(0, -1); this.problemInstanceProviderSplitContainer.Name = "problemInstanceProviderSplitContainer"; // // problemInstanceProviderSplitContainer.Panel1 // this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instanceLabel); this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instancesComboBox); this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.importButton); this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.loadButton); // // problemInstanceProviderSplitContainer.Panel2 // this.problemInstanceProviderSplitContainer.Panel2.Controls.Add(this.exportButton); this.problemInstanceProviderSplitContainer.Size = new System.Drawing.Size(694, 22); this.problemInstanceProviderSplitContainer.SplitterDistance = 665; this.problemInstanceProviderSplitContainer.TabIndex = 9; // // ProblemInstanceProviderView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.problemInstanceProviderSplitContainer); this.Name = "ProblemInstanceProviderView"; this.Size = new System.Drawing.Size(694, 21); this.problemInstanceProviderSplitContainer.Panel1.ResumeLayout(false); this.problemInstanceProviderSplitContainer.Panel1.PerformLayout(); this.problemInstanceProviderSplitContainer.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).EndInit(); this.problemInstanceProviderSplitContainer.ResumeLayout(false); this.ResumeLayout(false); } #endregion protected System.Windows.Forms.OpenFileDialog openFileDialog; protected System.Windows.Forms.ToolTip toolTip; protected System.Windows.Forms.Button loadButton; protected System.Windows.Forms.Label instanceLabel; protected System.Windows.Forms.ComboBox instancesComboBox; protected System.Windows.Forms.Button importButton; protected System.Windows.Forms.Button exportButton; protected System.Windows.Forms.SaveFileDialog saveFileDialog; protected System.Windows.Forms.SplitContainer problemInstanceProviderSplitContainer; } }