Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 853 was 800, checked in by msteinbi, 15 years ago

Added additional WCF endpoint for the server management console - fixed #381

File size: 3.5 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.SuspendLayout();
36          //
37          // label1
38          //
39          this.label1.AutoSize = true;
40          this.label1.Location = new System.Drawing.Point(18, 18);
41          this.label1.Name = "label1";
42          this.label1.Size = new System.Drawing.Size(113, 13);
43          this.label1.TabIndex = 0;
44          this.label1.Text = "Hive server running @";
45          //
46          // lblAddress1
47          //
48          this.lblAddress1.AutoSize = true;
49          this.lblAddress1.Location = new System.Drawing.Point(18, 43);
50          this.lblAddress1.Name = "lblAddress1";
51          this.lblAddress1.Size = new System.Drawing.Size(44, 13);
52          this.lblAddress1.TabIndex = 1;
53          this.lblAddress1.Text = "address";
54          //
55          // label2
56          //
57          this.label2.AutoSize = true;
58          this.label2.Location = new System.Drawing.Point(18, 76);
59          this.label2.Name = "label2";
60          this.label2.Size = new System.Drawing.Size(195, 13);
61          this.label2.TabIndex = 2;
62          this.label2.Text = "Hive Server Console Facade running @";
63          //
64          // lblAddress2
65          //
66          this.lblAddress2.AutoSize = true;
67          this.lblAddress2.Location = new System.Drawing.Point(18, 102);
68          this.lblAddress2.Name = "lblAddress2";
69          this.lblAddress2.Size = new System.Drawing.Size(44, 13);
70          this.lblAddress2.TabIndex = 3;
71          this.lblAddress2.Text = "address";
72          //
73          // MainForm
74          //
75          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
76          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
77          this.ClientSize = new System.Drawing.Size(304, 128);
78          this.Controls.Add(this.lblAddress2);
79          this.Controls.Add(this.label2);
80          this.Controls.Add(this.lblAddress1);
81          this.Controls.Add(this.label1);
82          this.Name = "MainForm";
83          this.Text = "Hive Server Console";
84          this.ResumeLayout(false);
85          this.PerformLayout();
86
87        }
88
89        #endregion
90
91        private System.Windows.Forms.Label label1;
92        private System.Windows.Forms.Label lblAddress1;
93        private System.Windows.Forms.Label label2;
94        private System.Windows.Forms.Label lblAddress2;
95    }
96}
Note: See TracBrowser for help on using the repository browser.