Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/ServerForm.designer.cs @ 352

Last change on this file since 352 was 352, checked in by gkronber, 16 years ago

added skeleton plugins for CEDMA

File size: 4.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.activeAgentsLabel = new System.Windows.Forms.Label();
51      this.activeAgentsTextBox = new System.Windows.Forms.TextBox();
52      this.statusUpdateTimer = new System.Windows.Forms.Timer(this.components);
53      this.SuspendLayout();
54      //
55      // addressTextBox
56      //
57      this.addressTextBox.Location = new System.Drawing.Point(106, 6);
58      this.addressTextBox.Name = "addressTextBox";
59      this.addressTextBox.ReadOnly = true;
60      this.addressTextBox.Size = new System.Drawing.Size(229, 20);
61      this.addressTextBox.TabIndex = 0;
62      //
63      // externalAddressLabel
64      //
65      this.externalAddressLabel.AutoSize = true;
66      this.externalAddressLabel.Location = new System.Drawing.Point(12, 9);
67      this.externalAddressLabel.Name = "externalAddressLabel";
68      this.externalAddressLabel.Size = new System.Drawing.Size(48, 13);
69      this.externalAddressLabel.TabIndex = 3;
70      this.externalAddressLabel.Text = "&Address:";
71      //
72      // activeAgentsLabel
73      //
74      this.activeAgentsLabel.AutoSize = true;
75      this.activeAgentsLabel.Location = new System.Drawing.Point(12, 35);
76      this.activeAgentsLabel.Name = "activeAgentsLabel";
77      this.activeAgentsLabel.Size = new System.Drawing.Size(75, 13);
78      this.activeAgentsLabel.TabIndex = 7;
79      this.activeAgentsLabel.Text = "A&ctive agents:";
80      //
81      // activeAgentsTextBox
82      //
83      this.activeAgentsTextBox.Location = new System.Drawing.Point(106, 32);
84      this.activeAgentsTextBox.Name = "activeAgentsTextBox";
85      this.activeAgentsTextBox.ReadOnly = true;
86      this.activeAgentsTextBox.Size = new System.Drawing.Size(90, 20);
87      this.activeAgentsTextBox.TabIndex = 6;
88      this.activeAgentsTextBox.Text = "0";
89      this.activeAgentsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
90      //
91      // statusUpdateTimer
92      //
93      this.statusUpdateTimer.Enabled = true;
94      this.statusUpdateTimer.Interval = 1000;
95      this.statusUpdateTimer.Tick += new System.EventHandler(this.statusUpdateTimer_Tick);
96      //
97      // ServerForm
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.ClientSize = new System.Drawing.Size(347, 62);
102      this.Controls.Add(this.activeAgentsLabel);
103      this.Controls.Add(this.activeAgentsTextBox);
104      this.Controls.Add(this.externalAddressLabel);
105      this.Controls.Add(this.addressTextBox);
106      this.Name = "ServerForm";
107      this.Text = "Agent Server";
108      this.ResumeLayout(false);
109      this.PerformLayout();
110
111    }
112
113    #endregion
114
115    private System.Windows.Forms.TextBox addressTextBox;
116    private System.Windows.Forms.Label externalAddressLabel;
117    private System.Windows.Forms.Label activeAgentsLabel;
118    private System.Windows.Forms.TextBox activeAgentsTextBox;
119    private System.Windows.Forms.Timer statusUpdateTimer;
120  }
121}
Note: See TracBrowser for help on using the repository browser.