Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Server/ServerForm.designer.cs @ 1044

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

worked on dispatcher for CEDMA agents. #419 (Refactor CEDMA plugins)

File size: 5.8 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.CEDMA.Server {
23  partial class ServerForm {
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 Windows Form 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      this.addressTextBox = new System.Windows.Forms.TextBox();
49      this.externalAddressLabel = new System.Windows.Forms.Label();
50      this.gridAddressLabel = new System.Windows.Forms.Label();
51      this.gridAddress = new System.Windows.Forms.TextBox();
52      this.connectButton = new System.Windows.Forms.Button();
53      this.listBox = new System.Windows.Forms.ListBox();
54      this.refreshTimer = new System.Windows.Forms.Timer(this.components);
55      this.SuspendLayout();
56      //
57      // addressTextBox
58      //
59      this.addressTextBox.Location = new System.Drawing.Point(106, 6);
60      this.addressTextBox.Name = "addressTextBox";
61      this.addressTextBox.ReadOnly = true;
62      this.addressTextBox.Size = new System.Drawing.Size(229, 20);
63      this.addressTextBox.TabIndex = 0;
64      //
65      // externalAddressLabel
66      //
67      this.externalAddressLabel.AutoSize = true;
68      this.externalAddressLabel.Location = new System.Drawing.Point(12, 9);
69      this.externalAddressLabel.Name = "externalAddressLabel";
70      this.externalAddressLabel.Size = new System.Drawing.Size(48, 13);
71      this.externalAddressLabel.TabIndex = 3;
72      this.externalAddressLabel.Text = "&Address:";
73      //
74      // gridAddressLabel
75      //
76      this.gridAddressLabel.AutoSize = true;
77      this.gridAddressLabel.Location = new System.Drawing.Point(12, 35);
78      this.gridAddressLabel.Name = "gridAddressLabel";
79      this.gridAddressLabel.Size = new System.Drawing.Size(69, 13);
80      this.gridAddressLabel.TabIndex = 9;
81      this.gridAddressLabel.Text = "&Grid address:";
82      //
83      // gridAddress
84      //
85      this.gridAddress.Location = new System.Drawing.Point(106, 32);
86      this.gridAddress.Name = "gridAddress";
87      this.gridAddress.Size = new System.Drawing.Size(160, 20);
88      this.gridAddress.TabIndex = 8;
89      //
90      // connectButton
91      //
92      this.connectButton.Location = new System.Drawing.Point(272, 30);
93      this.connectButton.Name = "connectButton";
94      this.connectButton.Size = new System.Drawing.Size(75, 23);
95      this.connectButton.TabIndex = 10;
96      this.connectButton.Text = "Connect";
97      this.connectButton.UseVisualStyleBackColor = true;
98      this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
99      //
100      // listBox
101      //
102      this.listBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
103                  | System.Windows.Forms.AnchorStyles.Left)
104                  | System.Windows.Forms.AnchorStyles.Right)));
105      this.listBox.FormattingEnabled = true;
106      this.listBox.Location = new System.Drawing.Point(12, 58);
107      this.listBox.Name = "listBox";
108      this.listBox.Size = new System.Drawing.Size(350, 277);
109      this.listBox.TabIndex = 11;
110      //
111      // refreshTimer
112      //
113      this.refreshTimer.Enabled = true;
114      this.refreshTimer.Interval = 1000;
115      this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick);
116      //
117      // ServerForm
118      //
119      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
120      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
121      this.ClientSize = new System.Drawing.Size(374, 342);
122      this.Controls.Add(this.listBox);
123      this.Controls.Add(this.connectButton);
124      this.Controls.Add(this.gridAddressLabel);
125      this.Controls.Add(this.gridAddress);
126      this.Controls.Add(this.externalAddressLabel);
127      this.Controls.Add(this.addressTextBox);
128      this.Name = "ServerForm";
129      this.Text = "CEDMA Server";
130      this.ResumeLayout(false);
131      this.PerformLayout();
132
133    }
134
135    #endregion
136
137    private System.Windows.Forms.TextBox addressTextBox;
138    private System.Windows.Forms.Label externalAddressLabel;
139    private System.Windows.Forms.Label gridAddressLabel;
140    private System.Windows.Forms.TextBox gridAddress;
141    private System.Windows.Forms.Button connectButton;
142    private System.Windows.Forms.ListBox listBox;
143    private System.Windows.Forms.Timer refreshTimer;
144  }
145}
Note: See TracBrowser for help on using the repository browser.