Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server/MainForm.Designer.cs @ 1120

Last change on this file since 1120 was 1120, checked in by svonolfe, 15 years ago

Added execution engine facade (#465)

File size: 4.6 KB
Line 
1namespace HeuristicLab.Hive.Server
2{
3    partial class MainForm
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Windows Form Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31          this.label1 = new System.Windows.Forms.Label();
32          this.lblAddress1 = new System.Windows.Forms.Label();
33          this.label2 = new System.Windows.Forms.Label();
34          this.lblAddress2 = new System.Windows.Forms.Label();
35          this.label3 = new System.Windows.Forms.Label();
36          this.lblAddress3 = new System.Windows.Forms.Label();
37          this.SuspendLayout();
38          //
39          // label1
40          //
41          this.label1.AutoSize = true;
42          this.label1.Location = new System.Drawing.Point(18, 18);
43          this.label1.Name = "label1";
44          this.label1.Size = new System.Drawing.Size(115, 13);
45          this.label1.TabIndex = 0;
46          this.label1.Text = "Hive Server running @";
47          //
48          // lblAddress1
49          //
50          this.lblAddress1.AutoSize = true;
51          this.lblAddress1.Location = new System.Drawing.Point(18, 43);
52          this.lblAddress1.Name = "lblAddress1";
53          this.lblAddress1.Size = new System.Drawing.Size(44, 13);
54          this.lblAddress1.TabIndex = 1;
55          this.lblAddress1.Text = "address";
56          //
57          // label2
58          //
59          this.label2.AutoSize = true;
60          this.label2.Location = new System.Drawing.Point(18, 76);
61          this.label2.Name = "label2";
62          this.label2.Size = new System.Drawing.Size(195, 13);
63          this.label2.TabIndex = 2;
64          this.label2.Text = "Hive Server Console Facade running @";
65          //
66          // lblAddress2
67          //
68          this.lblAddress2.AutoSize = true;
69          this.lblAddress2.Location = new System.Drawing.Point(18, 102);
70          this.lblAddress2.Name = "lblAddress2";
71          this.lblAddress2.Size = new System.Drawing.Size(44, 13);
72          this.lblAddress2.TabIndex = 3;
73          this.lblAddress2.Text = "address";
74          //
75          // label3
76          //
77          this.label3.AutoSize = true;
78          this.label3.Location = new System.Drawing.Point(18, 131);
79          this.label3.Name = "label3";
80          this.label3.Size = new System.Drawing.Size(206, 13);
81          this.label3.TabIndex = 4;
82          this.label3.Text = "Hive Execution Engine Facade running @";
83          //
84          // lblAddress3
85          //
86          this.lblAddress3.AutoSize = true;
87          this.lblAddress3.Location = new System.Drawing.Point(18, 159);
88          this.lblAddress3.Name = "lblAddress3";
89          this.lblAddress3.Size = new System.Drawing.Size(44, 13);
90          this.lblAddress3.TabIndex = 5;
91          this.lblAddress3.Text = "address";
92          //
93          // MainForm
94          //
95          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
96          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
97          this.ClientSize = new System.Drawing.Size(304, 181);
98          this.Controls.Add(this.lblAddress3);
99          this.Controls.Add(this.label3);
100          this.Controls.Add(this.lblAddress2);
101          this.Controls.Add(this.label2);
102          this.Controls.Add(this.lblAddress1);
103          this.Controls.Add(this.label1);
104          this.Name = "MainForm";
105          this.Text = "Hive Server Console";
106          this.ResumeLayout(false);
107          this.PerformLayout();
108
109        }
110
111        #endregion
112
113        private System.Windows.Forms.Label label1;
114        private System.Windows.Forms.Label lblAddress1;
115        private System.Windows.Forms.Label label2;
116        private System.Windows.Forms.Label lblAddress2;
117        private System.Windows.Forms.Label label3;
118        private System.Windows.Forms.Label lblAddress3;
119    }
120}
Note: See TracBrowser for help on using the repository browser.