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.components = new System.ComponentModel.Container();
|
---|
32 | this.label1 = new System.Windows.Forms.Label();
|
---|
33 | this.rtfServices = new System.Windows.Forms.RichTextBox();
|
---|
34 | this.ni = new System.Windows.Forms.NotifyIcon(this.components);
|
---|
35 | this.ctxNotifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
36 | this.tsShowInfo = new System.Windows.Forms.ToolStripMenuItem();
|
---|
37 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
---|
38 | this.tsExit = new System.Windows.Forms.ToolStripMenuItem();
|
---|
39 | this.btnClose = new System.Windows.Forms.Button();
|
---|
40 | this.ctxNotifyMenu.SuspendLayout();
|
---|
41 | this.SuspendLayout();
|
---|
42 | //
|
---|
43 | // label1
|
---|
44 | //
|
---|
45 | this.label1.AutoSize = true;
|
---|
46 | this.label1.Location = new System.Drawing.Point(12, 9);
|
---|
47 | this.label1.Name = "label1";
|
---|
48 | this.label1.Size = new System.Drawing.Size(97, 13);
|
---|
49 | this.label1.TabIndex = 0;
|
---|
50 | this.label1.Text = "Available Services:";
|
---|
51 | //
|
---|
52 | // rtfServices
|
---|
53 | //
|
---|
54 | this.rtfServices.Location = new System.Drawing.Point(12, 25);
|
---|
55 | this.rtfServices.Name = "rtfServices";
|
---|
56 | this.rtfServices.ReadOnly = true;
|
---|
57 | this.rtfServices.Size = new System.Drawing.Size(280, 121);
|
---|
58 | this.rtfServices.TabIndex = 1;
|
---|
59 | this.rtfServices.Text = "";
|
---|
60 | //
|
---|
61 | // ni
|
---|
62 | //
|
---|
63 | this.ni.ContextMenuStrip = this.ctxNotifyMenu;
|
---|
64 | this.ni.Text = "notifyIcon1";
|
---|
65 | this.ni.Visible = true;
|
---|
66 | //
|
---|
67 | // ctxNotifyMenu
|
---|
68 | //
|
---|
69 | this.ctxNotifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
70 | this.tsShowInfo,
|
---|
71 | this.toolStripSeparator1,
|
---|
72 | this.tsExit});
|
---|
73 | this.ctxNotifyMenu.Name = "ctxNotifyMenu";
|
---|
74 | this.ctxNotifyMenu.Size = new System.Drawing.Size(106, 54);
|
---|
75 | //
|
---|
76 | // tsShowInfo
|
---|
77 | //
|
---|
78 | this.tsShowInfo.Name = "tsShowInfo";
|
---|
79 | this.tsShowInfo.Size = new System.Drawing.Size(105, 22);
|
---|
80 | this.tsShowInfo.Text = "&Info";
|
---|
81 | this.tsShowInfo.Click += new System.EventHandler(this.ShowInfo);
|
---|
82 | //
|
---|
83 | // toolStripSeparator1
|
---|
84 | //
|
---|
85 | this.toolStripSeparator1.Name = "toolStripSeparator1";
|
---|
86 | this.toolStripSeparator1.Size = new System.Drawing.Size(102, 6);
|
---|
87 | //
|
---|
88 | // tsExit
|
---|
89 | //
|
---|
90 | this.tsExit.Name = "tsExit";
|
---|
91 | this.tsExit.Size = new System.Drawing.Size(105, 22);
|
---|
92 | this.tsExit.Text = "E&xit";
|
---|
93 | this.tsExit.Click += new System.EventHandler(this.CloseApp);
|
---|
94 | //
|
---|
95 | // btnClose
|
---|
96 | //
|
---|
97 | this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
98 | this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
99 | this.btnClose.Location = new System.Drawing.Point(279, 1);
|
---|
100 | this.btnClose.Name = "btnClose";
|
---|
101 | this.btnClose.Size = new System.Drawing.Size(22, 21);
|
---|
102 | this.btnClose.TabIndex = 2;
|
---|
103 | this.btnClose.Text = "X";
|
---|
104 | this.btnClose.UseVisualStyleBackColor = true;
|
---|
105 | this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
---|
106 | //
|
---|
107 | // MainForm
|
---|
108 | //
|
---|
109 | this.AcceptButton = this.btnClose;
|
---|
110 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
111 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
112 | this.CancelButton = this.btnClose;
|
---|
113 | this.ClientSize = new System.Drawing.Size(304, 166);
|
---|
114 | this.ControlBox = false;
|
---|
115 | this.Controls.Add(this.btnClose);
|
---|
116 | this.Controls.Add(this.rtfServices);
|
---|
117 | this.Controls.Add(this.label1);
|
---|
118 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
---|
119 | this.Name = "MainForm";
|
---|
120 | this.ShowInTaskbar = false;
|
---|
121 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
122 | this.Text = "Hive Server";
|
---|
123 | this.TopMost = true;
|
---|
124 | this.ctxNotifyMenu.ResumeLayout(false);
|
---|
125 | this.ResumeLayout(false);
|
---|
126 | this.PerformLayout();
|
---|
127 |
|
---|
128 | }
|
---|
129 |
|
---|
130 | #endregion
|
---|
131 |
|
---|
132 | private System.Windows.Forms.Label label1;
|
---|
133 | private System.Windows.Forms.RichTextBox rtfServices;
|
---|
134 | private System.Windows.Forms.NotifyIcon ni;
|
---|
135 | private System.Windows.Forms.ContextMenuStrip ctxNotifyMenu;
|
---|
136 | private System.Windows.Forms.ToolStripMenuItem tsShowInfo;
|
---|
137 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
---|
138 | private System.Windows.Forms.ToolStripMenuItem tsExit;
|
---|
139 | private System.Windows.Forms.Button btnClose;
|
---|
140 | }
|
---|
141 | } |
---|