Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.Designer.cs @ 3280

Last change on this file since 3280 was 3280, checked in by swagner, 14 years ago

Continued work on algorithm batch processing (#947).

File size: 9.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 RunView {
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) {
35        if (components != null) 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.components = new System.ComponentModel.Container();
48      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Results", System.Windows.Forms.HorizontalAlignment.Left);
49      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Parameters", System.Windows.Forms.HorizontalAlignment.Left);
50      this.parametersResultsGroupBox = new System.Windows.Forms.GroupBox();
51      this.splitContainer = new System.Windows.Forms.SplitContainer();
52      this.listView = new System.Windows.Forms.ListView();
53      this.nameColumnHeader = new System.Windows.Forms.ColumnHeader();
54      this.valueColumnHeader = new System.Windows.Forms.ColumnHeader();
55      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
56      this.viewHost = new HeuristicLab.Core.Views.ViewHost();
57      this.imageList = new System.Windows.Forms.ImageList(this.components);
58      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
59      this.parametersResultsGroupBox.SuspendLayout();
60      this.splitContainer.Panel1.SuspendLayout();
61      this.splitContainer.Panel2.SuspendLayout();
62      this.splitContainer.SuspendLayout();
63      this.detailsGroupBox.SuspendLayout();
64      this.SuspendLayout();
65      //
66      // nameTextBox
67      //
68      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
69      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
70      this.nameTextBox.Size = new System.Drawing.Size(423, 20);
71      //
72      // descriptionTextBox
73      //
74      this.descriptionTextBox.Size = new System.Drawing.Size(423, 20);
75      //
76      // parametersResultsGroupBox
77      //
78      this.parametersResultsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
79                  | System.Windows.Forms.AnchorStyles.Left)
80                  | System.Windows.Forms.AnchorStyles.Right)));
81      this.parametersResultsGroupBox.Controls.Add(this.splitContainer);
82      this.parametersResultsGroupBox.Location = new System.Drawing.Point(0, 52);
83      this.parametersResultsGroupBox.Name = "parametersResultsGroupBox";
84      this.parametersResultsGroupBox.Size = new System.Drawing.Size(495, 299);
85      this.parametersResultsGroupBox.TabIndex = 4;
86      this.parametersResultsGroupBox.TabStop = false;
87      this.parametersResultsGroupBox.Text = "Parameters && Results";
88      //
89      // splitContainer
90      //
91      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
92      this.splitContainer.Location = new System.Drawing.Point(3, 16);
93      this.splitContainer.Name = "splitContainer";
94      //
95      // splitContainer.Panel1
96      //
97      this.splitContainer.Panel1.Controls.Add(this.listView);
98      //
99      // splitContainer.Panel2
100      //
101      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
102      this.splitContainer.Size = new System.Drawing.Size(489, 280);
103      this.splitContainer.SplitterDistance = 177;
104      this.splitContainer.TabIndex = 0;
105      //
106      // listView
107      //
108      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
109                  | System.Windows.Forms.AnchorStyles.Left)
110                  | System.Windows.Forms.AnchorStyles.Right)));
111      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
112            this.nameColumnHeader,
113            this.valueColumnHeader});
114      this.listView.FullRowSelect = true;
115      listViewGroup1.Header = "Results";
116      listViewGroup1.Name = "resultsGroup";
117      listViewGroup2.Header = "Parameters";
118      listViewGroup2.Name = "parametersGroup";
119      this.listView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
120            listViewGroup1,
121            listViewGroup2});
122      this.listView.HideSelection = false;
123      this.listView.Location = new System.Drawing.Point(3, 3);
124      this.listView.MultiSelect = false;
125      this.listView.Name = "listView";
126      this.listView.ShowItemToolTips = true;
127      this.listView.Size = new System.Drawing.Size(171, 274);
128      this.listView.SmallImageList = this.imageList;
129      this.listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
130      this.listView.TabIndex = 0;
131      this.listView.UseCompatibleStateImageBehavior = false;
132      this.listView.View = System.Windows.Forms.View.Details;
133      this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
134      //
135      // nameColumnHeader
136      //
137      this.nameColumnHeader.Text = "Name";
138      //
139      // valueColumnHeader
140      //
141      this.valueColumnHeader.Text = "Value";
142      //
143      // detailsGroupBox
144      //
145      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
146                  | System.Windows.Forms.AnchorStyles.Left)
147                  | System.Windows.Forms.AnchorStyles.Right)));
148      this.detailsGroupBox.Controls.Add(this.viewHost);
149      this.detailsGroupBox.Location = new System.Drawing.Point(3, 3);
150      this.detailsGroupBox.Name = "detailsGroupBox";
151      this.detailsGroupBox.Size = new System.Drawing.Size(302, 274);
152      this.detailsGroupBox.TabIndex = 0;
153      this.detailsGroupBox.TabStop = false;
154      this.detailsGroupBox.Text = "Details";
155      //
156      // viewHost
157      //
158      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
159                  | System.Windows.Forms.AnchorStyles.Left)
160                  | System.Windows.Forms.AnchorStyles.Right)));
161      this.viewHost.Content = null;
162      this.viewHost.Location = new System.Drawing.Point(6, 19);
163      this.viewHost.Name = "viewHost";
164      this.viewHost.Size = new System.Drawing.Size(290, 249);
165      this.viewHost.TabIndex = 0;
166      this.viewHost.ViewType = null;
167      //
168      // imageList
169      //
170      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
171      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
172      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
173      //
174      // RunView
175      //
176      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
177      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
178      this.Controls.Add(this.parametersResultsGroupBox);
179      this.Name = "RunView";
180      this.Size = new System.Drawing.Size(495, 351);
181      this.Controls.SetChildIndex(this.parametersResultsGroupBox, 0);
182      this.Controls.SetChildIndex(this.descriptionLabel, 0);
183      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
184      this.Controls.SetChildIndex(this.nameTextBox, 0);
185      this.Controls.SetChildIndex(this.nameLabel, 0);
186      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
187      this.parametersResultsGroupBox.ResumeLayout(false);
188      this.splitContainer.Panel1.ResumeLayout(false);
189      this.splitContainer.Panel2.ResumeLayout(false);
190      this.splitContainer.ResumeLayout(false);
191      this.detailsGroupBox.ResumeLayout(false);
192      this.ResumeLayout(false);
193      this.PerformLayout();
194
195    }
196
197    #endregion
198
199    private System.Windows.Forms.GroupBox parametersResultsGroupBox;
200    private System.Windows.Forms.SplitContainer splitContainer;
201    private System.Windows.Forms.GroupBox detailsGroupBox;
202    private System.Windows.Forms.ListView listView;
203    private System.Windows.Forms.ColumnHeader nameColumnHeader;
204    private System.Windows.Forms.ColumnHeader valueColumnHeader;
205    private HeuristicLab.Core.Views.ViewHost viewHost;
206    private System.Windows.Forms.ImageList imageList;
207
208  }
209}
Note: See TracBrowser for help on using the repository browser.