Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.ExternalEvaluation.Views/3.4/EvaluationProcessChannelView.Designer.cs @ 13321

Last change on this file since 13321 was 12009, checked in by ascheibe, 9 years ago

#2212 updated copyright year

File size: 8.5 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.Problems.ExternalEvaluation.Views {
23  partial class EvaluationProcessChannelView {
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.executableTextBox = new System.Windows.Forms.TextBox();
48      this.browseExecutableButton = new System.Windows.Forms.Button();
49      this.argumentsTextBox = new System.Windows.Forms.TextBox();
50      this.executableLabel = new System.Windows.Forms.Label();
51      this.argumentsLabel = new System.Windows.Forms.Label();
52      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
53      this.startButton = new System.Windows.Forms.Button();
54      this.terminateButton = new System.Windows.Forms.Button();
55      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
56      this.SuspendLayout();
57      //
58      // nameTextBox
59      //
60      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
61      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
62      this.nameTextBox.Location = new System.Drawing.Point(72, 0);
63      this.nameTextBox.Size = new System.Drawing.Size(287, 20);
64      //
65      // infoLabel
66      //
67      this.infoLabel.Location = new System.Drawing.Point(370, 3);
68      //
69      // executableTextBox
70      //
71      this.executableTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
72                  | System.Windows.Forms.AnchorStyles.Right)));
73      this.executableTextBox.Location = new System.Drawing.Point(72, 26);
74      this.executableTextBox.Name = "executableTextBox";
75      this.executableTextBox.ReadOnly = true;
76      this.executableTextBox.Size = new System.Drawing.Size(287, 20);
77      this.executableTextBox.TabIndex = 4;
78      //
79      // browseExecutableButton
80      //
81      this.browseExecutableButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
82      this.browseExecutableButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
83      this.browseExecutableButton.Location = new System.Drawing.Point(365, 24);
84      this.browseExecutableButton.Name = "browseExecutableButton";
85      this.browseExecutableButton.Size = new System.Drawing.Size(26, 23);
86      this.browseExecutableButton.TabIndex = 5;
87      this.browseExecutableButton.UseVisualStyleBackColor = true;
88      this.browseExecutableButton.Click += new System.EventHandler(this.browseExecutableButton_Click);
89      //
90      // argumentsTextBox
91      //
92      this.argumentsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
93                  | System.Windows.Forms.AnchorStyles.Right)));
94      this.argumentsTextBox.Location = new System.Drawing.Point(72, 52);
95      this.argumentsTextBox.Name = "argumentsTextBox";
96      this.argumentsTextBox.Size = new System.Drawing.Size(287, 20);
97      this.argumentsTextBox.TabIndex = 6;
98      this.argumentsTextBox.Validated += new System.EventHandler(this.argumentsTextBox_Validated);
99      //
100      // executableLabel
101      //
102      this.executableLabel.AutoSize = true;
103      this.executableLabel.Location = new System.Drawing.Point(3, 29);
104      this.executableLabel.Name = "executableLabel";
105      this.executableLabel.Size = new System.Drawing.Size(63, 13);
106      this.executableLabel.TabIndex = 7;
107      this.executableLabel.Text = "Executable:";
108      //
109      // argumentsLabel
110      //
111      this.argumentsLabel.AutoSize = true;
112      this.argumentsLabel.Location = new System.Drawing.Point(3, 55);
113      this.argumentsLabel.Name = "argumentsLabel";
114      this.argumentsLabel.Size = new System.Drawing.Size(60, 13);
115      this.argumentsLabel.TabIndex = 7;
116      this.argumentsLabel.Text = "Arguments:";
117      //
118      // openFileDialog
119      //
120      this.openFileDialog.Filter = "Executables|*.exe|All files|*.*";
121      this.openFileDialog.Title = "Select the executable of the external process";
122      //
123      // startButton
124      //
125      this.startButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
126      this.startButton.Location = new System.Drawing.Point(72, 78);
127      this.startButton.Name = "startButton";
128      this.startButton.Size = new System.Drawing.Size(26, 23);
129      this.startButton.TabIndex = 8;
130      this.startButton.UseVisualStyleBackColor = true;
131      this.startButton.Click += new System.EventHandler(this.startButton_Click);
132      //
133      // terminateButton
134      //
135      this.terminateButton.Enabled = false;
136      this.terminateButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
137      this.terminateButton.Location = new System.Drawing.Point(104, 78);
138      this.terminateButton.Name = "terminateButton";
139      this.terminateButton.Size = new System.Drawing.Size(26, 23);
140      this.terminateButton.TabIndex = 8;
141      this.terminateButton.UseVisualStyleBackColor = true;
142      this.terminateButton.Click += new System.EventHandler(this.terminateButton_Click);
143      //
144      // EvaluationProcessChannelView
145      //
146      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
147      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
148      this.Controls.Add(this.executableTextBox);
149      this.Controls.Add(this.argumentsLabel);
150      this.Controls.Add(this.argumentsTextBox);
151      this.Controls.Add(this.startButton);
152      this.Controls.Add(this.executableLabel);
153      this.Controls.Add(this.browseExecutableButton);
154      this.Controls.Add(this.terminateButton);
155      this.Name = "EvaluationProcessChannelView";
156      this.Size = new System.Drawing.Size(391, 106);
157      this.Controls.SetChildIndex(this.infoLabel, 0);
158      this.Controls.SetChildIndex(this.terminateButton, 0);
159      this.Controls.SetChildIndex(this.browseExecutableButton, 0);
160      this.Controls.SetChildIndex(this.executableLabel, 0);
161      this.Controls.SetChildIndex(this.startButton, 0);
162      this.Controls.SetChildIndex(this.argumentsTextBox, 0);
163      this.Controls.SetChildIndex(this.argumentsLabel, 0);
164      this.Controls.SetChildIndex(this.executableTextBox, 0);
165      this.Controls.SetChildIndex(this.nameLabel, 0);
166      this.Controls.SetChildIndex(this.nameTextBox, 0);
167      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
168      this.ResumeLayout(false);
169      this.PerformLayout();
170
171    }
172
173    #endregion
174
175    private System.Windows.Forms.TextBox executableTextBox;
176    private System.Windows.Forms.Button browseExecutableButton;
177    private System.Windows.Forms.TextBox argumentsTextBox;
178    private System.Windows.Forms.Label executableLabel;
179    private System.Windows.Forms.Label argumentsLabel;
180    private System.Windows.Forms.OpenFileDialog openFileDialog;
181    private System.Windows.Forms.Button startButton;
182    private System.Windows.Forms.Button terminateButton;
183  }
184}
Note: See TracBrowser for help on using the repository browser.