namespace HeuristicLab.Clients.Hive.SlaveCore.SlaveTrayIcon {
partial class MainWindow {
///
/// 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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuNotifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.slaveView = new HeuristicLab.Clients.Hive.SlaveCore.Views.SlaveView();
this.contextMenuNotifyIcon.SuspendLayout();
this.SuspendLayout();
//
// notifyIcon
//
this.notifyIcon.BalloonTipText = "A client for computing jobs sent from HeuristicLab Hive";
this.notifyIcon.BalloonTipTitle = "HeuristicLab Hive Slave";
this.notifyIcon.ContextMenuStrip = this.contextMenuNotifyIcon;
this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
this.notifyIcon.Text = "HeuristicLab Hive Slave";
this.notifyIcon.Visible = true;
this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
//
// contextMenuNotifyIcon
//
this.contextMenuNotifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.showToolStripMenuItem,
this.closeToolStripMenuItem});
this.contextMenuNotifyIcon.Name = "contextMenuNotifyIcon";
this.contextMenuNotifyIcon.Size = new System.Drawing.Size(104, 48);
//
// showToolStripMenuItem
//
this.showToolStripMenuItem.Name = "showToolStripMenuItem";
this.showToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.showToolStripMenuItem.Text = "Show";
this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
//
// closeToolStripMenuItem
//
this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
this.closeToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.closeToolStripMenuItem.Text = "Close";
this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
//
// slaveView
//
this.slaveView.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.slaveView.Caption = "HeuristicLab Slave View";
this.slaveView.Content = null;
this.slaveView.Location = new System.Drawing.Point(12, 12);
this.slaveView.Name = "slaveView";
this.slaveView.ReadOnly = false;
this.slaveView.Size = new System.Drawing.Size(593, 430);
this.slaveView.TabIndex = 0;
//
// MainWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(617, 454);
this.Controls.Add(this.slaveView);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "MainWindow";
this.Text = "HeuristicLab Hive Slave View";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
this.contextMenuNotifyIcon.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.NotifyIcon notifyIcon;
private Views.SlaveView slaveView;
private System.Windows.Forms.ContextMenuStrip contextMenuNotifyIcon;
private System.Windows.Forms.ToolStripMenuItem showToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
}
}