Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Optimization.Views/3.3/MultiEncodingView.Designer.cs @ 13302

Last change on this file since 13302 was 12005, checked in by abeham, 9 years ago

#2174, #2282: merged revisions r11961,r11963,r11967,r11970,r11971,r11982,r11984,r11998,r12001,r12002,r12003,r12004,r11939,r11945,r11956,r11958,r11959,r11960,r11983,r11987,r11988,r11990,r11993,r11994,r11996,r11999,r12000 to stable

File size: 13.1 KB
Line 
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
22namespace HeuristicLab.Optimization.Views {
23  partial class MultiEncodingView {
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.encodingsListView = new System.Windows.Forms.ListView();
48      this.encodingNameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
49      this.encodingTypeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
50      this.addEncodingButton = new System.Windows.Forms.Button();
51      this.removeEncodingButton = new System.Windows.Forms.Button();
52      this.splitContainer = new System.Windows.Forms.SplitContainer();
53      this.encodingDetailsGroupBox = new System.Windows.Forms.GroupBox();
54      this.encodingDetailViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
55      this.encodingsGroupBox = new System.Windows.Forms.GroupBox();
56      this.tabControl = new System.Windows.Forms.TabControl();
57      this.encodingsTabPage = new System.Windows.Forms.TabPage();
58      this.parametersTabPage = new System.Windows.Forms.TabPage();
59      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
60      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
61      this.splitContainer.Panel1.SuspendLayout();
62      this.splitContainer.Panel2.SuspendLayout();
63      this.splitContainer.SuspendLayout();
64      this.encodingDetailsGroupBox.SuspendLayout();
65      this.encodingsGroupBox.SuspendLayout();
66      this.tabControl.SuspendLayout();
67      this.encodingsTabPage.SuspendLayout();
68      this.parametersTabPage.SuspendLayout();
69      this.SuspendLayout();
70      //
71      // parameterCollectionView
72      //
73      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
74      this.parameterCollectionView.Size = new System.Drawing.Size(643, 433);
75      this.parameterCollectionView.TabIndex = 0;
76      //
77      // nameTextBox
78      //
79      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
80      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
81      this.nameTextBox.Size = new System.Drawing.Size(583, 20);
82      //
83      // infoLabel
84      //
85      this.infoLabel.Location = new System.Drawing.Point(647, 3);
86      //
87      // encodingsListView
88      //
89      this.encodingsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
90            | System.Windows.Forms.AnchorStyles.Left)
91            | System.Windows.Forms.AnchorStyles.Right)));
92      this.encodingsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
93            this.encodingNameColumnHeader,
94            this.encodingTypeColumnHeader});
95      this.encodingsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
96      this.encodingsListView.HideSelection = false;
97      this.encodingsListView.Location = new System.Drawing.Point(3, 33);
98      this.encodingsListView.MultiSelect = false;
99      this.encodingsListView.Name = "encodingsListView";
100      this.encodingsListView.ShowGroups = false;
101      this.encodingsListView.Size = new System.Drawing.Size(241, 378);
102      this.encodingsListView.TabIndex = 2;
103      this.encodingsListView.UseCompatibleStateImageBehavior = false;
104      this.encodingsListView.View = System.Windows.Forms.View.Details;
105      this.encodingsListView.SelectedIndexChanged += new System.EventHandler(this.encodingsListView_SelectedIndexChanged);
106      //
107      // encodingNameColumnHeader
108      //
109      this.encodingNameColumnHeader.Text = "Name";
110      this.encodingNameColumnHeader.Width = 100;
111      //
112      // encodingTypeColumnHeader
113      //
114      this.encodingTypeColumnHeader.Text = "Type";
115      this.encodingTypeColumnHeader.Width = 136;
116      //
117      // addEncodingButton
118      //
119      this.addEncodingButton.Location = new System.Drawing.Point(3, 3);
120      this.addEncodingButton.Name = "addEncodingButton";
121      this.addEncodingButton.Size = new System.Drawing.Size(24, 24);
122      this.addEncodingButton.TabIndex = 0;
123      this.addEncodingButton.Text = "+";
124      this.addEncodingButton.UseVisualStyleBackColor = true;
125      this.addEncodingButton.Click += new System.EventHandler(this.addEncodingButton_Click);
126      //
127      // removeEncodingButton
128      //
129      this.removeEncodingButton.Location = new System.Drawing.Point(33, 3);
130      this.removeEncodingButton.Name = "removeEncodingButton";
131      this.removeEncodingButton.Size = new System.Drawing.Size(24, 24);
132      this.removeEncodingButton.TabIndex = 1;
133      this.removeEncodingButton.Text = "x";
134      this.removeEncodingButton.UseVisualStyleBackColor = true;
135      this.removeEncodingButton.Click += new System.EventHandler(this.removeEncodingButton_Click);
136      //
137      // splitContainer
138      //
139      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
140      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
141      this.splitContainer.Location = new System.Drawing.Point(3, 16);
142      this.splitContainer.Name = "splitContainer";
143      //
144      // splitContainer.Panel1
145      //
146      this.splitContainer.Panel1.Controls.Add(this.encodingsListView);
147      this.splitContainer.Panel1.Controls.Add(this.removeEncodingButton);
148      this.splitContainer.Panel1.Controls.Add(this.addEncodingButton);
149      //
150      // splitContainer.Panel2
151      //
152      this.splitContainer.Panel2.Controls.Add(this.encodingDetailsGroupBox);
153      this.splitContainer.Size = new System.Drawing.Size(637, 414);
154      this.splitContainer.SplitterDistance = 247;
155      this.splitContainer.TabIndex = 5;
156      //
157      // encodingDetailsGroupBox
158      //
159      this.encodingDetailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
160            | System.Windows.Forms.AnchorStyles.Left)
161            | System.Windows.Forms.AnchorStyles.Right)));
162      this.encodingDetailsGroupBox.Controls.Add(this.encodingDetailViewHost);
163      this.encodingDetailsGroupBox.Location = new System.Drawing.Point(3, 27);
164      this.encodingDetailsGroupBox.Name = "encodingDetailsGroupBox";
165      this.encodingDetailsGroupBox.Size = new System.Drawing.Size(380, 384);
166      this.encodingDetailsGroupBox.TabIndex = 0;
167      this.encodingDetailsGroupBox.TabStop = false;
168      this.encodingDetailsGroupBox.Text = "Details";
169      //
170      // encodingDetailViewHost
171      //
172      this.encodingDetailViewHost.Caption = "View";
173      this.encodingDetailViewHost.Content = null;
174      this.encodingDetailViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
175      this.encodingDetailViewHost.Enabled = false;
176      this.encodingDetailViewHost.Location = new System.Drawing.Point(3, 16);
177      this.encodingDetailViewHost.Name = "encodingDetailViewHost";
178      this.encodingDetailViewHost.ReadOnly = false;
179      this.encodingDetailViewHost.Size = new System.Drawing.Size(374, 365);
180      this.encodingDetailViewHost.TabIndex = 0;
181      this.encodingDetailViewHost.ViewsLabelVisible = true;
182      this.encodingDetailViewHost.ViewType = null;
183      //
184      // encodingsGroupBox
185      //
186      this.encodingsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
187            | System.Windows.Forms.AnchorStyles.Left)
188            | System.Windows.Forms.AnchorStyles.Right)));
189      this.encodingsGroupBox.Controls.Add(this.splitContainer);
190      this.encodingsGroupBox.Location = new System.Drawing.Point(6, 6);
191      this.encodingsGroupBox.Name = "encodingsGroupBox";
192      this.encodingsGroupBox.Size = new System.Drawing.Size(643, 433);
193      this.encodingsGroupBox.TabIndex = 0;
194      this.encodingsGroupBox.TabStop = false;
195      this.encodingsGroupBox.Text = "Encodings";
196      //
197      // tabControl
198      //
199      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
200            | System.Windows.Forms.AnchorStyles.Left)
201            | System.Windows.Forms.AnchorStyles.Right)));
202      this.tabControl.Controls.Add(this.encodingsTabPage);
203      this.tabControl.Controls.Add(this.parametersTabPage);
204      this.tabControl.Location = new System.Drawing.Point(0, 26);
205      this.tabControl.Name = "tabControl";
206      this.tabControl.SelectedIndex = 0;
207      this.tabControl.Size = new System.Drawing.Size(663, 471);
208      this.tabControl.TabIndex = 3;
209      //
210      // encodingsTabPage
211      //
212      this.encodingsTabPage.Controls.Add(this.encodingsGroupBox);
213      this.encodingsTabPage.Location = new System.Drawing.Point(4, 22);
214      this.encodingsTabPage.Name = "encodingsTabPage";
215      this.encodingsTabPage.Padding = new System.Windows.Forms.Padding(3);
216      this.encodingsTabPage.Size = new System.Drawing.Size(655, 445);
217      this.encodingsTabPage.TabIndex = 0;
218      this.encodingsTabPage.Text = "Encodings";
219      this.encodingsTabPage.UseVisualStyleBackColor = true;
220      //
221      // parametersTabPage
222      //
223      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
224      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
225      this.parametersTabPage.Name = "parametersTabPage";
226      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
227      this.parametersTabPage.Size = new System.Drawing.Size(655, 445);
228      this.parametersTabPage.TabIndex = 1;
229      this.parametersTabPage.Text = "Parameters";
230      this.parametersTabPage.UseVisualStyleBackColor = true;
231      //
232      // MultiEncodingView
233      //
234      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
235      this.Controls.Add(this.tabControl);
236      this.Name = "MultiEncodingView";
237      this.Size = new System.Drawing.Size(666, 497);
238      this.Controls.SetChildIndex(this.nameLabel, 0);
239      this.Controls.SetChildIndex(this.nameTextBox, 0);
240      this.Controls.SetChildIndex(this.infoLabel, 0);
241      this.Controls.SetChildIndex(this.tabControl, 0);
242      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
243      this.splitContainer.Panel1.ResumeLayout(false);
244      this.splitContainer.Panel2.ResumeLayout(false);
245      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
246      this.splitContainer.ResumeLayout(false);
247      this.encodingDetailsGroupBox.ResumeLayout(false);
248      this.encodingsGroupBox.ResumeLayout(false);
249      this.tabControl.ResumeLayout(false);
250      this.encodingsTabPage.ResumeLayout(false);
251      this.parametersTabPage.ResumeLayout(false);
252      this.ResumeLayout(false);
253      this.PerformLayout();
254
255    }
256
257    #endregion
258
259    private System.Windows.Forms.ListView encodingsListView;
260    private System.Windows.Forms.Button addEncodingButton;
261    private System.Windows.Forms.Button removeEncodingButton;
262    private System.Windows.Forms.SplitContainer splitContainer;
263    private System.Windows.Forms.ColumnHeader encodingNameColumnHeader;
264    private System.Windows.Forms.ColumnHeader encodingTypeColumnHeader;
265    private System.Windows.Forms.GroupBox encodingDetailsGroupBox;
266    private MainForm.WindowsForms.ViewHost encodingDetailViewHost;
267    private System.Windows.Forms.GroupBox encodingsGroupBox;
268    private System.Windows.Forms.TabControl tabControl;
269    private System.Windows.Forms.TabPage encodingsTabPage;
270    private System.Windows.Forms.TabPage parametersTabPage;
271  }
272}
Note: See TracBrowser for help on using the repository browser.