namespace HeuristicLab.Services.Hive.Standalone
{
partial class MainForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.rtfServices = new System.Windows.Forms.RichTextBox();
this.ni = new System.Windows.Forms.NotifyIcon(this.components);
this.ctxNotifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsShowInfo = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tsExit = new System.Windows.Forms.ToolStripMenuItem();
this.ctxNotifyMenu.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(97, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Available Services:";
//
// rtfServices
//
this.rtfServices.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.rtfServices.Location = new System.Drawing.Point(12, 25);
this.rtfServices.Name = "rtfServices";
this.rtfServices.ReadOnly = true;
this.rtfServices.Size = new System.Drawing.Size(377, 129);
this.rtfServices.TabIndex = 1;
this.rtfServices.Text = "";
//
// ni
//
this.ni.ContextMenuStrip = this.ctxNotifyMenu;
this.ni.Text = "notifyIcon1";
this.ni.Visible = true;
this.ni.MouseClick += new System.Windows.Forms.MouseEventHandler(this.ni_MouseClick);
//
// ctxNotifyMenu
//
this.ctxNotifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsShowInfo,
this.toolStripSeparator1,
this.tsExit});
this.ctxNotifyMenu.Name = "ctxNotifyMenu";
this.ctxNotifyMenu.Size = new System.Drawing.Size(96, 54);
//
// tsShowInfo
//
this.tsShowInfo.Name = "tsShowInfo";
this.tsShowInfo.Size = new System.Drawing.Size(95, 22);
this.tsShowInfo.Text = "&Info";
this.tsShowInfo.Click += new System.EventHandler(this.ShowInfo);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(92, 6);
//
// tsExit
//
this.tsExit.Name = "tsExit";
this.tsExit.Size = new System.Drawing.Size(95, 22);
this.tsExit.Text = "E&xit";
this.tsExit.Click += new System.EventHandler(this.CloseApp);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(401, 166);
this.Controls.Add(this.rtfServices);
this.Controls.Add(this.label1);
this.Name = "MainForm";
this.Text = "Hive Server";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.ctxNotifyMenu.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.RichTextBox rtfServices;
private System.Windows.Forms.NotifyIcon ni;
private System.Windows.Forms.ContextMenuStrip ctxNotifyMenu;
private System.Windows.Forms.ToolStripMenuItem tsShowInfo;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem tsExit;
}
}