Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/3.3/ServerView.designer.cs @ 2843

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

Refactored CEDMA dispatcher and CEDMA server view to allow different modeling scenarios for each variable. #754

File size: 6.3 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 ServerView {
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.gridAddressLabel = new System.Windows.Forms.Label();
48      this.address = new System.Windows.Forms.TextBox();
49      this.connectButton = new System.Windows.Forms.Button();
50      this.tabControl = new System.Windows.Forms.TabControl();
51      this.executerTabPage = new System.Windows.Forms.TabPage();
52      this.dispatcherTabPage = new System.Windows.Forms.TabPage();
53      this.problemPage = new System.Windows.Forms.TabPage();
54      this.tabControl.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // gridAddressLabel
58      //
59      this.gridAddressLabel.AutoSize = true;
60      this.gridAddressLabel.Location = new System.Drawing.Point(2, 8);
61      this.gridAddressLabel.Name = "gridAddressLabel";
62      this.gridAddressLabel.Size = new System.Drawing.Size(69, 13);
63      this.gridAddressLabel.TabIndex = 9;
64      this.gridAddressLabel.Text = "&Grid address:";
65      //
66      // address
67      //
68      this.address.Location = new System.Drawing.Point(96, 5);
69      this.address.Name = "address";
70      this.address.Size = new System.Drawing.Size(160, 20);
71      this.address.TabIndex = 8;
72      //
73      // connectButton
74      //
75      this.connectButton.Location = new System.Drawing.Point(262, 3);
76      this.connectButton.Name = "connectButton";
77      this.connectButton.Size = new System.Drawing.Size(75, 23);
78      this.connectButton.TabIndex = 10;
79      this.connectButton.Text = "Connect";
80      this.connectButton.UseVisualStyleBackColor = true;
81      this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
82      //
83      // tabControl
84      //
85      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86                  | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.tabControl.Controls.Add(this.executerTabPage);
89      this.tabControl.Controls.Add(this.dispatcherTabPage);
90      this.tabControl.Controls.Add(this.problemPage);
91      this.tabControl.Location = new System.Drawing.Point(3, 31);
92      this.tabControl.Name = "tabControl";
93      this.tabControl.SelectedIndex = 0;
94      this.tabControl.Size = new System.Drawing.Size(573, 570);
95      this.tabControl.TabIndex = 14;
96      //
97      // executerTabPage
98      //
99      this.executerTabPage.Location = new System.Drawing.Point(4, 22);
100      this.executerTabPage.Name = "executerTabPage";
101      this.executerTabPage.Padding = new System.Windows.Forms.Padding(3);
102      this.executerTabPage.Size = new System.Drawing.Size(565, 544);
103      this.executerTabPage.TabIndex = 0;
104      this.executerTabPage.Text = "Executer";
105      this.executerTabPage.UseVisualStyleBackColor = true;
106      //
107      // dispatcherTabPage
108      //
109      this.dispatcherTabPage.Location = new System.Drawing.Point(4, 22);
110      this.dispatcherTabPage.Name = "dispatcherTabPage";
111      this.dispatcherTabPage.Padding = new System.Windows.Forms.Padding(3);
112      this.dispatcherTabPage.Size = new System.Drawing.Size(565, 517);
113      this.dispatcherTabPage.TabIndex = 1;
114      this.dispatcherTabPage.Text = "Dispatcher";
115      this.dispatcherTabPage.UseVisualStyleBackColor = true;
116      //
117      // problemPage
118      //
119      this.problemPage.Location = new System.Drawing.Point(4, 22);
120      this.problemPage.Name = "problemPage";
121      this.problemPage.Padding = new System.Windows.Forms.Padding(3);
122      this.problemPage.Size = new System.Drawing.Size(565, 517);
123      this.problemPage.TabIndex = 2;
124      this.problemPage.Text = "Problem";
125      this.problemPage.UseVisualStyleBackColor = true;
126      //
127      // ServerView
128      //
129      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
130      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
131      this.Controls.Add(this.tabControl);
132      this.Controls.Add(this.connectButton);
133      this.Controls.Add(this.gridAddressLabel);
134      this.Controls.Add(this.address);
135      this.Name = "ServerView";
136      this.Size = new System.Drawing.Size(579, 604);
137      this.tabControl.ResumeLayout(false);
138      this.ResumeLayout(false);
139      this.PerformLayout();
140
141    }
142
143    #endregion
144
145    private System.Windows.Forms.Label gridAddressLabel;
146    private System.Windows.Forms.TextBox address;
147    private System.Windows.Forms.Button connectButton;
148    private System.Windows.Forms.TabControl tabControl;
149    private System.Windows.Forms.TabPage executerTabPage;
150    private System.Windows.Forms.TabPage dispatcherTabPage;
151    private System.Windows.Forms.TabPage problemPage;
152  }
153}
Note: See TracBrowser for help on using the repository browser.