#region License Information /* HeuristicLab * Copyright (C) 2002-2015 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.Optimization.Views { partial class CreateNewSingleEncodingDialog { /// /// 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 Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.encodingTypeComboBox = new System.Windows.Forms.ComboBox(); this.label2 = new System.Windows.Forms.Label(); this.encodingNameTextBox = new System.Windows.Forms.TextBox(); this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(22, 20); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(34, 13); this.label1.TabIndex = 0; this.label1.Text = "Type:"; // // encodingTypeComboBox // this.encodingTypeComboBox.DisplayMember = "Name"; this.encodingTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.encodingTypeComboBox.FormattingEnabled = true; this.encodingTypeComboBox.Location = new System.Drawing.Point(66, 17); this.encodingTypeComboBox.Name = "encodingTypeComboBox"; this.encodingTypeComboBox.Size = new System.Drawing.Size(232, 21); this.encodingTypeComboBox.TabIndex = 1; this.encodingTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.encodingTypeComboBox_SelectedIndexChanged); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(22, 47); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(38, 13); this.label2.TabIndex = 2; this.label2.Text = "Name:"; // // encodingNameTextBox // this.encodingNameTextBox.Location = new System.Drawing.Point(66, 44); this.encodingNameTextBox.Name = "encodingNameTextBox"; this.encodingNameTextBox.Size = new System.Drawing.Size(232, 20); this.encodingNameTextBox.TabIndex = 3; this.encodingNameTextBox.TextChanged += new System.EventHandler(this.encodingNameTextBox_TextChanged); // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.Location = new System.Drawing.Point(142, 70); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 4; this.okButton.Text = "&OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(223, 70); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 4; this.cancelButton.Text = "&Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // CreateNewSingleEncodingDialog // this.AcceptButton = this.okButton; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(320, 105); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.Controls.Add(this.encodingNameTextBox); this.Controls.Add(this.label2); this.Controls.Add(this.encodingTypeComboBox); this.Controls.Add(this.label1); this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "CreateNewSingleEncodingDialog"; this.ShowInTaskbar = false; this.Text = "Create new encoding"; this.Load += new System.EventHandler(this.CreateNewSingleEncodingDialog_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox encodingTypeComboBox; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox encodingNameTextBox; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button cancelButton; } }