Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Communication.Data/3.2/TcpNetworkDriverConfigurationView.Designer.cs @ 3526

Last change on this file since 3526 was 1529, checked in by gkronber, 15 years ago

Moved source files of plugins AdvancedOptimizationFrontEnd ... Grid into version-specific sub-folders. #576

File size: 5.5 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 TcpNetworkDriverConfigurationView {
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.ipAddressStringDataView = new HeuristicLab.Data.StringDataView();
48      this.ipAddressLabel = new System.Windows.Forms.Label();
49      this.targetPortLabel = new System.Windows.Forms.Label();
50      this.targetPortIntDataView = new HeuristicLab.Data.IntDataView();
51      this.sourcePortIntDataView = new HeuristicLab.Data.IntDataView();
52      this.sourcePortLabel = new System.Windows.Forms.Label();
53      this.SuspendLayout();
54      //
55      // ipAddressStringDataView
56      //
57      this.ipAddressStringDataView.Caption = "View";
58      this.ipAddressStringDataView.Location = new System.Drawing.Point(74, 3);
59      this.ipAddressStringDataView.Name = "ipAddressStringDataView";
60      this.ipAddressStringDataView.Size = new System.Drawing.Size(200, 25);
61      this.ipAddressStringDataView.StringData = null;
62      this.ipAddressStringDataView.TabIndex = 0;
63      //
64      // ipAddressLabel
65      //
66      this.ipAddressLabel.AutoSize = true;
67      this.ipAddressLabel.Location = new System.Drawing.Point(7, 7);
68      this.ipAddressLabel.Name = "ipAddressLabel";
69      this.ipAddressLabel.Size = new System.Drawing.Size(61, 13);
70      this.ipAddressLabel.TabIndex = 3;
71      this.ipAddressLabel.Text = "IP Address:";
72      //
73      // targetPortLabel
74      //
75      this.targetPortLabel.AutoSize = true;
76      this.targetPortLabel.Location = new System.Drawing.Point(8, 33);
77      this.targetPortLabel.Name = "targetPortLabel";
78      this.targetPortLabel.Size = new System.Drawing.Size(60, 13);
79      this.targetPortLabel.TabIndex = 4;
80      this.targetPortLabel.Text = "TargetPort:";
81      //
82      // targetPortIntDataView
83      //
84      this.targetPortIntDataView.Caption = "View";
85      this.targetPortIntDataView.IntData = null;
86      this.targetPortIntDataView.Location = new System.Drawing.Point(74, 30);
87      this.targetPortIntDataView.Name = "targetPortIntDataView";
88      this.targetPortIntDataView.Size = new System.Drawing.Size(96, 26);
89      this.targetPortIntDataView.TabIndex = 1;
90      //
91      // sourcePortIntDataView
92      //
93      this.sourcePortIntDataView.Caption = "View";
94      this.sourcePortIntDataView.IntData = null;
95      this.sourcePortIntDataView.Location = new System.Drawing.Point(74, 57);
96      this.sourcePortIntDataView.Name = "sourcePortIntDataView";
97      this.sourcePortIntDataView.Size = new System.Drawing.Size(96, 26);
98      this.sourcePortIntDataView.TabIndex = 5;
99      //
100      // sourcePortLabel
101      //
102      this.sourcePortLabel.AutoSize = true;
103      this.sourcePortLabel.Location = new System.Drawing.Point(2, 60);
104      this.sourcePortLabel.Name = "sourcePortLabel";
105      this.sourcePortLabel.Size = new System.Drawing.Size(66, 13);
106      this.sourcePortLabel.TabIndex = 6;
107      this.sourcePortLabel.Text = "Source Port:";
108      //
109      // TcpNetworkDriverConfigurationView
110      //
111      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
112      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
113      this.Controls.Add(this.sourcePortLabel);
114      this.Controls.Add(this.sourcePortIntDataView);
115      this.Controls.Add(this.targetPortIntDataView);
116      this.Controls.Add(this.targetPortLabel);
117      this.Controls.Add(this.ipAddressLabel);
118      this.Controls.Add(this.ipAddressStringDataView);
119      this.Name = "TcpNetworkDriverConfigurationView";
120      this.Size = new System.Drawing.Size(278, 81);
121      this.ResumeLayout(false);
122      this.PerformLayout();
123
124    }
125
126    #endregion
127
128    private HeuristicLab.Data.StringDataView ipAddressStringDataView;
129    private System.Windows.Forms.Label ipAddressLabel;
130    private System.Windows.Forms.Label targetPortLabel;
131    private HeuristicLab.Data.IntDataView targetPortIntDataView;
132    private HeuristicLab.Data.IntDataView sourcePortIntDataView;
133    private System.Windows.Forms.Label sourcePortLabel;
134  }
135}
Note: See TracBrowser for help on using the repository browser.