Free cookie consent management tool by TermsFeed Policy Generator

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

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

merged communication framework to trunk (ticket #279)

File size: 4.7 KB
Line 
1namespace HeuristicLab.Communication.Data {
2  partial class TcpNetworkDriverConfigurationView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.ipAddressStringDataView = new HeuristicLab.Data.StringDataView();
27      this.ipAddressLabel = new System.Windows.Forms.Label();
28      this.targetPortLabel = new System.Windows.Forms.Label();
29      this.targetPortIntDataView = new HeuristicLab.Data.IntDataView();
30      this.sourcePortIntDataView = new HeuristicLab.Data.IntDataView();
31      this.sourcePortLabel = new System.Windows.Forms.Label();
32      this.SuspendLayout();
33      //
34      // ipAddressStringDataView
35      //
36      this.ipAddressStringDataView.Caption = "View";
37      this.ipAddressStringDataView.Location = new System.Drawing.Point(74, 3);
38      this.ipAddressStringDataView.Name = "ipAddressStringDataView";
39      this.ipAddressStringDataView.Size = new System.Drawing.Size(200, 25);
40      this.ipAddressStringDataView.StringData = null;
41      this.ipAddressStringDataView.TabIndex = 0;
42      //
43      // ipAddressLabel
44      //
45      this.ipAddressLabel.AutoSize = true;
46      this.ipAddressLabel.Location = new System.Drawing.Point(7, 7);
47      this.ipAddressLabel.Name = "ipAddressLabel";
48      this.ipAddressLabel.Size = new System.Drawing.Size(61, 13);
49      this.ipAddressLabel.TabIndex = 3;
50      this.ipAddressLabel.Text = "IP Address:";
51      //
52      // targetPortLabel
53      //
54      this.targetPortLabel.AutoSize = true;
55      this.targetPortLabel.Location = new System.Drawing.Point(8, 33);
56      this.targetPortLabel.Name = "targetPortLabel";
57      this.targetPortLabel.Size = new System.Drawing.Size(60, 13);
58      this.targetPortLabel.TabIndex = 4;
59      this.targetPortLabel.Text = "TargetPort:";
60      //
61      // targetPortIntDataView
62      //
63      this.targetPortIntDataView.Caption = "View";
64      this.targetPortIntDataView.IntData = null;
65      this.targetPortIntDataView.Location = new System.Drawing.Point(74, 30);
66      this.targetPortIntDataView.Name = "targetPortIntDataView";
67      this.targetPortIntDataView.Size = new System.Drawing.Size(96, 26);
68      this.targetPortIntDataView.TabIndex = 1;
69      //
70      // sourcePortIntDataView
71      //
72      this.sourcePortIntDataView.Caption = "View";
73      this.sourcePortIntDataView.IntData = null;
74      this.sourcePortIntDataView.Location = new System.Drawing.Point(74, 57);
75      this.sourcePortIntDataView.Name = "sourcePortIntDataView";
76      this.sourcePortIntDataView.Size = new System.Drawing.Size(96, 26);
77      this.sourcePortIntDataView.TabIndex = 5;
78      //
79      // sourcePortLabel
80      //
81      this.sourcePortLabel.AutoSize = true;
82      this.sourcePortLabel.Location = new System.Drawing.Point(2, 60);
83      this.sourcePortLabel.Name = "sourcePortLabel";
84      this.sourcePortLabel.Size = new System.Drawing.Size(66, 13);
85      this.sourcePortLabel.TabIndex = 6;
86      this.sourcePortLabel.Text = "Source Port:";
87      //
88      // TcpNetworkDriverConfigurationView
89      //
90      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92      this.Controls.Add(this.sourcePortLabel);
93      this.Controls.Add(this.sourcePortIntDataView);
94      this.Controls.Add(this.targetPortIntDataView);
95      this.Controls.Add(this.targetPortLabel);
96      this.Controls.Add(this.ipAddressLabel);
97      this.Controls.Add(this.ipAddressStringDataView);
98      this.Name = "TcpNetworkDriverConfigurationView";
99      this.Size = new System.Drawing.Size(278, 81);
100      this.ResumeLayout(false);
101      this.PerformLayout();
102
103    }
104
105    #endregion
106
107    private HeuristicLab.Data.StringDataView ipAddressStringDataView;
108    private System.Windows.Forms.Label ipAddressLabel;
109    private System.Windows.Forms.Label targetPortLabel;
110    private HeuristicLab.Data.IntDataView targetPortIntDataView;
111    private HeuristicLab.Data.IntDataView sourcePortIntDataView;
112    private System.Windows.Forms.Label sourcePortLabel;
113  }
114}
Note: See TracBrowser for help on using the repository browser.