1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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.Optimization.Views {
|
---|
23 | partial class CreateNewSingleEncodingDialog {
|
---|
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 Windows Form 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 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateNewSingleEncodingDialog));
|
---|
48 | this.label1 = new System.Windows.Forms.Label();
|
---|
49 | this.encodingTypeComboBox = new System.Windows.Forms.ComboBox();
|
---|
50 | this.label2 = new System.Windows.Forms.Label();
|
---|
51 | this.encodingNameTextBox = new System.Windows.Forms.TextBox();
|
---|
52 | this.okButton = new System.Windows.Forms.Button();
|
---|
53 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
54 | this.SuspendLayout();
|
---|
55 | //
|
---|
56 | // label1
|
---|
57 | //
|
---|
58 | this.label1.AutoSize = true;
|
---|
59 | this.label1.Location = new System.Drawing.Point(22, 20);
|
---|
60 | this.label1.Name = "label1";
|
---|
61 | this.label1.Size = new System.Drawing.Size(34, 13);
|
---|
62 | this.label1.TabIndex = 0;
|
---|
63 | this.label1.Text = "Type:";
|
---|
64 | //
|
---|
65 | // encodingTypeComboBox
|
---|
66 | //
|
---|
67 | this.encodingTypeComboBox.DisplayMember = "Name";
|
---|
68 | this.encodingTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
69 | this.encodingTypeComboBox.FormattingEnabled = true;
|
---|
70 | this.encodingTypeComboBox.Location = new System.Drawing.Point(66, 17);
|
---|
71 | this.encodingTypeComboBox.Name = "encodingTypeComboBox";
|
---|
72 | this.encodingTypeComboBox.Size = new System.Drawing.Size(232, 21);
|
---|
73 | this.encodingTypeComboBox.TabIndex = 1;
|
---|
74 | this.encodingTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.encodingTypeComboBox_SelectedIndexChanged);
|
---|
75 | //
|
---|
76 | // label2
|
---|
77 | //
|
---|
78 | this.label2.AutoSize = true;
|
---|
79 | this.label2.Location = new System.Drawing.Point(22, 47);
|
---|
80 | this.label2.Name = "label2";
|
---|
81 | this.label2.Size = new System.Drawing.Size(38, 13);
|
---|
82 | this.label2.TabIndex = 2;
|
---|
83 | this.label2.Text = "Name:";
|
---|
84 | //
|
---|
85 | // encodingNameTextBox
|
---|
86 | //
|
---|
87 | this.encodingNameTextBox.Location = new System.Drawing.Point(66, 44);
|
---|
88 | this.encodingNameTextBox.Name = "encodingNameTextBox";
|
---|
89 | this.encodingNameTextBox.Size = new System.Drawing.Size(232, 20);
|
---|
90 | this.encodingNameTextBox.TabIndex = 3;
|
---|
91 | this.encodingNameTextBox.TextChanged += new System.EventHandler(this.encodingNameTextBox_TextChanged);
|
---|
92 | //
|
---|
93 | // okButton
|
---|
94 | //
|
---|
95 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
96 | this.okButton.Location = new System.Drawing.Point(142, 70);
|
---|
97 | this.okButton.Name = "okButton";
|
---|
98 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
99 | this.okButton.TabIndex = 4;
|
---|
100 | this.okButton.Text = "&OK";
|
---|
101 | this.okButton.UseVisualStyleBackColor = true;
|
---|
102 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
103 | //
|
---|
104 | // cancelButton
|
---|
105 | //
|
---|
106 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
107 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
108 | this.cancelButton.Location = new System.Drawing.Point(223, 70);
|
---|
109 | this.cancelButton.Name = "cancelButton";
|
---|
110 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
111 | this.cancelButton.TabIndex = 4;
|
---|
112 | this.cancelButton.Text = "&Cancel";
|
---|
113 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
114 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
115 | //
|
---|
116 | // CreateNewSingleEncodingDialog
|
---|
117 | //
|
---|
118 | this.AcceptButton = this.okButton;
|
---|
119 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
120 | this.CancelButton = this.cancelButton;
|
---|
121 | this.ClientSize = new System.Drawing.Size(320, 105);
|
---|
122 | this.Controls.Add(this.cancelButton);
|
---|
123 | this.Controls.Add(this.okButton);
|
---|
124 | this.Controls.Add(this.encodingNameTextBox);
|
---|
125 | this.Controls.Add(this.label2);
|
---|
126 | this.Controls.Add(this.encodingTypeComboBox);
|
---|
127 | this.Controls.Add(this.label1);
|
---|
128 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
129 | this.MaximizeBox = false;
|
---|
130 | this.MinimizeBox = false;
|
---|
131 | this.Name = "CreateNewSingleEncodingDialog";
|
---|
132 | this.ShowInTaskbar = false;
|
---|
133 | this.Text = "Create new encoding";
|
---|
134 | this.Load += new System.EventHandler(this.CreateNewSingleEncodingDialog_Load);
|
---|
135 | this.ResumeLayout(false);
|
---|
136 | this.PerformLayout();
|
---|
137 |
|
---|
138 | }
|
---|
139 |
|
---|
140 | #endregion
|
---|
141 |
|
---|
142 | private System.Windows.Forms.Label label1;
|
---|
143 | private System.Windows.Forms.ComboBox encodingTypeComboBox;
|
---|
144 | private System.Windows.Forms.Label label2;
|
---|
145 | private System.Windows.Forms.TextBox encodingNameTextBox;
|
---|
146 | private System.Windows.Forms.Button okButton;
|
---|
147 | private System.Windows.Forms.Button cancelButton;
|
---|
148 | }
|
---|
149 | } |
---|