Free cookie consent management tool by TermsFeed Policy Generator

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

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

worked on CEDMA console and problem importer. #419 (Refactor CEDMA plugins)

File size: 4.7 KB
RevLine 
[352]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.addressTextBox = new System.Windows.Forms.TextBox();
48      this.externalAddressLabel = new System.Windows.Forms.Label();
[375]49      this.gridAddressLabel = new System.Windows.Forms.Label();
50      this.gridAddress = new System.Windows.Forms.TextBox();
51      this.startButton = new System.Windows.Forms.Button();
[352]52      this.SuspendLayout();
53      //
54      // addressTextBox
55      //
56      this.addressTextBox.Location = new System.Drawing.Point(106, 6);
57      this.addressTextBox.Name = "addressTextBox";
58      this.addressTextBox.ReadOnly = true;
59      this.addressTextBox.Size = new System.Drawing.Size(229, 20);
60      this.addressTextBox.TabIndex = 0;
61      //
62      // externalAddressLabel
63      //
64      this.externalAddressLabel.AutoSize = true;
65      this.externalAddressLabel.Location = new System.Drawing.Point(12, 9);
66      this.externalAddressLabel.Name = "externalAddressLabel";
67      this.externalAddressLabel.Size = new System.Drawing.Size(48, 13);
68      this.externalAddressLabel.TabIndex = 3;
69      this.externalAddressLabel.Text = "&Address:";
70      //
[375]71      // gridAddressLabel
72      //
73      this.gridAddressLabel.AutoSize = true;
74      this.gridAddressLabel.Location = new System.Drawing.Point(12, 35);
75      this.gridAddressLabel.Name = "gridAddressLabel";
76      this.gridAddressLabel.Size = new System.Drawing.Size(69, 13);
77      this.gridAddressLabel.TabIndex = 9;
78      this.gridAddressLabel.Text = "&Grid address:";
79      //
80      // gridAddress
81      //
82      this.gridAddress.Location = new System.Drawing.Point(106, 32);
83      this.gridAddress.Name = "gridAddress";
84      this.gridAddress.Size = new System.Drawing.Size(229, 20);
85      this.gridAddress.TabIndex = 8;
86      //
87      // startButton
88      //
89      this.startButton.Location = new System.Drawing.Point(15, 84);
90      this.startButton.Name = "startButton";
91      this.startButton.Size = new System.Drawing.Size(75, 23);
92      this.startButton.TabIndex = 10;
93      this.startButton.Text = "Start";
94      this.startButton.UseVisualStyleBackColor = true;
95      this.startButton.Click += new System.EventHandler(this.startButton_Click);
96      //
[352]97      // ServerForm
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[375]101      this.ClientSize = new System.Drawing.Size(347, 119);
102      this.Controls.Add(this.startButton);
103      this.Controls.Add(this.gridAddressLabel);
104      this.Controls.Add(this.gridAddress);
[352]105      this.Controls.Add(this.externalAddressLabel);
106      this.Controls.Add(this.addressTextBox);
107      this.Name = "ServerForm";
[1003]108      this.Text = "CEDMA Server";
[352]109      this.ResumeLayout(false);
110      this.PerformLayout();
111
112    }
113
114    #endregion
115
116    private System.Windows.Forms.TextBox addressTextBox;
117    private System.Windows.Forms.Label externalAddressLabel;
[375]118    private System.Windows.Forms.Label gridAddressLabel;
119    private System.Windows.Forms.TextBox gridAddress;
120    private System.Windows.Forms.Button startButton;
[352]121  }
122}
Note: See TracBrowser for help on using the repository browser.