Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.4/SlaveView.Designer.cs @ 5599

Last change on this file since 5599 was 5599, checked in by ascheibe, 14 years ago

#1233

  • rename 'Slave' namespace to 'SlaveCore' (and assemblies etc) to avoid problems with 'Slave' class
  • use svcutil (OKB-style)
File size: 5.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Clients.Hive.SlaveCore.Views {
23  partial class SlaveView {
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 Component 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.label1 = new System.Windows.Forms.Label();
48      this.txtLog = new System.Windows.Forms.TextBox();
49      this.btnPauseAll = new System.Windows.Forms.Button();
50      this.btnStopAll = new System.Windows.Forms.Button();
51      this.btnRestart = new System.Windows.Forms.Button();
52      this.btnSleep = new System.Windows.Forms.Button();
53      this.SuspendLayout();
54      //
55      // label1
56      //
57      this.label1.AutoSize = true;
58      this.label1.Location = new System.Drawing.Point(40, 24);
59      this.label1.Name = "label1";
60      this.label1.Size = new System.Drawing.Size(85, 13);
61      this.label1.TabIndex = 0;
62      this.label1.Text = "Hive Slave View";
63      //
64      // txtLog
65      //
66      this.txtLog.BackColor = System.Drawing.Color.White;
67      this.txtLog.Location = new System.Drawing.Point(20, 172);
68      this.txtLog.Multiline = true;
69      this.txtLog.Name = "txtLog";
70      this.txtLog.ReadOnly = true;
71      this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
72      this.txtLog.Size = new System.Drawing.Size(546, 244);
73      this.txtLog.TabIndex = 1;
74      //
75      // btnPauseAll
76      //
77      this.btnPauseAll.Location = new System.Drawing.Point(390, 24);
78      this.btnPauseAll.Name = "btnPauseAll";
79      this.btnPauseAll.Size = new System.Drawing.Size(111, 23);
80      this.btnPauseAll.TabIndex = 2;
81      this.btnPauseAll.Text = "Pause all jobs";
82      this.btnPauseAll.UseVisualStyleBackColor = true;
83      this.btnPauseAll.Click += new System.EventHandler(this.btnSoftPause_Click);
84      //
85      // btnStopAll
86      //
87      this.btnStopAll.Location = new System.Drawing.Point(390, 53);
88      this.btnStopAll.Name = "btnStopAll";
89      this.btnStopAll.Size = new System.Drawing.Size(111, 23);
90      this.btnStopAll.TabIndex = 3;
91      this.btnStopAll.Text = "Stop all jobs";
92      this.btnStopAll.UseVisualStyleBackColor = true;
93      this.btnStopAll.Click += new System.EventHandler(this.btnHardPause_Click);
94      //
95      // btnRestart
96      //
97      this.btnRestart.Location = new System.Drawing.Point(390, 111);
98      this.btnRestart.Name = "btnRestart";
99      this.btnRestart.Size = new System.Drawing.Size(111, 23);
100      this.btnRestart.TabIndex = 4;
101      this.btnRestart.Text = "Restart Core";
102      this.btnRestart.UseVisualStyleBackColor = true;
103      this.btnRestart.Click += new System.EventHandler(this.btnRestart_Click);
104      //
105      // btnSleep
106      //
107      this.btnSleep.Location = new System.Drawing.Point(390, 82);
108      this.btnSleep.Name = "btnSleep";
109      this.btnSleep.Size = new System.Drawing.Size(111, 23);
110      this.btnSleep.TabIndex = 5;
111      this.btnSleep.Text = "Send slave to sleep";
112      this.btnSleep.UseVisualStyleBackColor = true;
113      this.btnSleep.Click += new System.EventHandler(this.btnSleep_Click);
114      //
115      // SlaveView
116      //
117      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
118      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
119      this.Controls.Add(this.btnSleep);
120      this.Controls.Add(this.btnRestart);
121      this.Controls.Add(this.btnStopAll);
122      this.Controls.Add(this.btnPauseAll);
123      this.Controls.Add(this.txtLog);
124      this.Controls.Add(this.label1);
125      this.Name = "SlaveView";
126      this.Size = new System.Drawing.Size(590, 435);
127      this.ResumeLayout(false);
128      this.PerformLayout();
129
130    }
131
132    #endregion
133
134    private System.Windows.Forms.Label label1;
135    private System.Windows.Forms.TextBox txtLog;
136    private System.Windows.Forms.Button btnPauseAll;
137    private System.Windows.Forms.Button btnStopAll;
138    private System.Windows.Forms.Button btnRestart;
139    private System.Windows.Forms.Button btnSleep;
140  }
141}
Note: See TracBrowser for help on using the repository browser.