1 | namespace 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.lblAddress = new System.Windows.Forms.Label();
|
---|
33 | this.SuspendLayout();
|
---|
34 | //
|
---|
35 | // label1
|
---|
36 | //
|
---|
37 | this.label1.AutoSize = true;
|
---|
38 | this.label1.Location = new System.Drawing.Point(18, 18);
|
---|
39 | this.label1.Name = "label1";
|
---|
40 | this.label1.Size = new System.Drawing.Size(113, 13);
|
---|
41 | this.label1.TabIndex = 0;
|
---|
42 | this.label1.Text = "Hive server running @";
|
---|
43 | //
|
---|
44 | // lblAddress
|
---|
45 | //
|
---|
46 | this.lblAddress.AutoSize = true;
|
---|
47 | this.lblAddress.Location = new System.Drawing.Point(18, 43);
|
---|
48 | this.lblAddress.Name = "lblAddress";
|
---|
49 | this.lblAddress.Size = new System.Drawing.Size(44, 13);
|
---|
50 | this.lblAddress.TabIndex = 1;
|
---|
51 | this.lblAddress.Text = "address";
|
---|
52 | //
|
---|
53 | // MainForm
|
---|
54 | //
|
---|
55 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
56 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
57 | this.ClientSize = new System.Drawing.Size(304, 78);
|
---|
58 | this.Controls.Add(this.lblAddress);
|
---|
59 | this.Controls.Add(this.label1);
|
---|
60 | this.Name = "MainForm";
|
---|
61 | this.Text = "Hive Server Console";
|
---|
62 | this.ResumeLayout(false);
|
---|
63 | this.PerformLayout();
|
---|
64 |
|
---|
65 | }
|
---|
66 |
|
---|
67 | #endregion
|
---|
68 |
|
---|
69 | private System.Windows.Forms.Label label1;
|
---|
70 | private System.Windows.Forms.Label lblAddress;
|
---|
71 | }
|
---|
72 | } |
---|