Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.1/sources/HeuristicLab.Communication.Data/LocalProcessDriverConfigurationView.Designer.cs @ 4384

Last change on this file since 4384 was 592, checked in by abeham, 16 years ago

Put the GPL license in the files from the communication framework and simulation optimization project (branch 3.1)

File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Communication.Data {
23  partial class LocalProcessDriverConfigurationView {
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.executablePathStringDataView = new HeuristicLab.Data.StringDataView();
48      this.argumentsStringDataView = new HeuristicLab.Data.StringDataView();
49      this.executableLabel = new System.Windows.Forms.Label();
50      this.argumentsLabel = new System.Windows.Forms.Label();
51      this.browseExecutableButtom = new System.Windows.Forms.Button();
52      this.executablePathOpenFileDialog = new System.Windows.Forms.OpenFileDialog();
53      this.SuspendLayout();
54      //
55      // executablePathStringDataView
56      //
57      this.executablePathStringDataView.Caption = "View";
58      this.executablePathStringDataView.Location = new System.Drawing.Point(69, 3);
59      this.executablePathStringDataView.Name = "executablePathStringDataView";
60      this.executablePathStringDataView.Size = new System.Drawing.Size(200, 25);
61      this.executablePathStringDataView.StringData = null;
62      this.executablePathStringDataView.TabIndex = 0;
63      //
64      // argumentsStringDataView
65      //
66      this.argumentsStringDataView.Caption = "View";
67      this.argumentsStringDataView.Location = new System.Drawing.Point(69, 31);
68      this.argumentsStringDataView.Name = "argumentsStringDataView";
69      this.argumentsStringDataView.Size = new System.Drawing.Size(200, 25);
70      this.argumentsStringDataView.StringData = null;
71      this.argumentsStringDataView.TabIndex = 1;
72      //
73      // executableLabel
74      //
75      this.executableLabel.AutoSize = true;
76      this.executableLabel.Location = new System.Drawing.Point(3, 6);
77      this.executableLabel.Name = "executableLabel";
78      this.executableLabel.Size = new System.Drawing.Size(60, 13);
79      this.executableLabel.TabIndex = 2;
80      this.executableLabel.Text = "Executable";
81      //
82      // argumentsLabel
83      //
84      this.argumentsLabel.AutoSize = true;
85      this.argumentsLabel.Location = new System.Drawing.Point(3, 34);
86      this.argumentsLabel.Name = "argumentsLabel";
87      this.argumentsLabel.Size = new System.Drawing.Size(57, 13);
88      this.argumentsLabel.TabIndex = 3;
89      this.argumentsLabel.Text = "Arguments";
90      //
91      // browseExecutableButtom
92      //
93      this.browseExecutableButtom.Location = new System.Drawing.Point(275, 1);
94      this.browseExecutableButtom.Name = "browseExecutableButtom";
95      this.browseExecutableButtom.Size = new System.Drawing.Size(75, 23);
96      this.browseExecutableButtom.TabIndex = 4;
97      this.browseExecutableButtom.Text = "Browse...";
98      this.browseExecutableButtom.UseVisualStyleBackColor = true;
99      this.browseExecutableButtom.Click += new System.EventHandler(this.browseExecutableButtom_Click);
100      //
101      // executablePathOpenFileDialog
102      //
103      this.executablePathOpenFileDialog.FileName = "*.exe";
104      this.executablePathOpenFileDialog.Filter = "Executables|*.exe|All files|*.*";
105      //
106      // LocalProcessDriverConfigurationView
107      //
108      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
109      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
110      this.Controls.Add(this.browseExecutableButtom);
111      this.Controls.Add(this.argumentsLabel);
112      this.Controls.Add(this.executableLabel);
113      this.Controls.Add(this.argumentsStringDataView);
114      this.Controls.Add(this.executablePathStringDataView);
115      this.Name = "LocalProcessDriverConfigurationView";
116      this.Size = new System.Drawing.Size(352, 54);
117      this.ResumeLayout(false);
118      this.PerformLayout();
119
120    }
121
122    #endregion
123
124    private HeuristicLab.Data.StringDataView executablePathStringDataView;
125    private HeuristicLab.Data.StringDataView argumentsStringDataView;
126    private System.Windows.Forms.Label executableLabel;
127    private System.Windows.Forms.Label argumentsLabel;
128    private System.Windows.Forms.Button browseExecutableButtom;
129    private System.Windows.Forms.OpenFileDialog executablePathOpenFileDialog;
130  }
131}
Note: See TracBrowser for help on using the repository browser.