[713] | 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 | {
|
---|
[741] | 31 | this.label1 = new System.Windows.Forms.Label();
|
---|
[800] | 32 | this.lblAddress1 = new System.Windows.Forms.Label();
|
---|
| 33 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 34 | this.lblAddress2 = new System.Windows.Forms.Label();
|
---|
[713] | 35 | this.SuspendLayout();
|
---|
| 36 | //
|
---|
[741] | 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 | //
|
---|
[800] | 46 | // lblAddress1
|
---|
[741] | 47 | //
|
---|
[800] | 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";
|
---|
[741] | 54 | //
|
---|
[800] | 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 | //
|
---|
[713] | 73 | // MainForm
|
---|
| 74 | //
|
---|
| 75 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 76 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[800] | 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);
|
---|
[741] | 81 | this.Controls.Add(this.label1);
|
---|
[713] | 82 | this.Name = "MainForm";
|
---|
| 83 | this.Text = "Hive Server Console";
|
---|
| 84 | this.ResumeLayout(false);
|
---|
[741] | 85 | this.PerformLayout();
|
---|
[713] | 86 |
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | #endregion
|
---|
[741] | 90 |
|
---|
| 91 | private System.Windows.Forms.Label label1;
|
---|
[800] | 92 | private System.Windows.Forms.Label lblAddress1;
|
---|
| 93 | private System.Windows.Forms.Label label2;
|
---|
| 94 | private System.Windows.Forms.Label lblAddress2;
|
---|
[713] | 95 | }
|
---|
| 96 | } |
---|