using System.ComponentModel; using System.Windows.Forms; namespace Zzz { partial class MainForm { /// /// Required designer variable. /// private IContainer components = null; #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(MainForm)); this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.toolStripEnabledMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.hibernateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.logViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); this.contextMenuStrip1.SuspendLayout(); this.SuspendLayout(); // // notifyIcon1 // this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1; this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon"))); this.notifyIcon1.Text = "Zzz"; this.notifyIcon1.Visible = true; this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.OnNotifyIconMouseClick); this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.OnNotifyIconMouseDoubleClick); // // contextMenuStrip1 // this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripEnabledMenuItem, this.hibernateToolStripMenuItem, this.toolStripSeparator1, this.toolStripMenuItem4, this.toolStripSeparator3, this.updateToolStripMenuItem, this.logViewToolStripMenuItem, this.toolStripSeparator2, this.aboutToolStripMenuItem, this.toolStripMenuItem3}); this.contextMenuStrip1.Name = "contextMenuStrip1"; this.contextMenuStrip1.Size = new System.Drawing.Size(132, 176); this.contextMenuStrip1.Text = "About..."; // // toolStripEnabledMenuItem // this.toolStripEnabledMenuItem.Checked = true; this.toolStripEnabledMenuItem.CheckOnClick = true; this.toolStripEnabledMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.toolStripEnabledMenuItem.Name = "toolStripEnabledMenuItem"; this.toolStripEnabledMenuItem.Size = new System.Drawing.Size(131, 22); this.toolStripEnabledMenuItem.Text = "Enabled"; this.toolStripEnabledMenuItem.CheckedChanged += new System.EventHandler(this.ToolStripMenuEnabledMenuItem_CheckedChanged); // // hibernateToolStripMenuItem // this.hibernateToolStripMenuItem.CheckOnClick = true; this.hibernateToolStripMenuItem.Name = "hibernateToolStripMenuItem"; this.hibernateToolStripMenuItem.Size = new System.Drawing.Size(131, 22); this.hibernateToolStripMenuItem.Text = "Hibernate"; this.hibernateToolStripMenuItem.CheckedChanged += new System.EventHandler(this.HibernateToolStripMenuItem_CheckedChanged); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(128, 6); // // toolStripMenuItem4 // this.toolStripMenuItem4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem4.Image"))); this.toolStripMenuItem4.Name = "toolStripMenuItem4"; this.toolStripMenuItem4.Size = new System.Drawing.Size(131, 22); this.toolStripMenuItem4.Text = "Settings..."; this.toolStripMenuItem4.Click += new System.EventHandler(this.ToolStripMenuItem4_Click); // // toolStripSeparator3 // this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(128, 6); // // updateToolStripMenuItem // this.updateToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("updateToolStripMenuItem.Image"))); this.updateToolStripMenuItem.Name = "updateToolStripMenuItem"; this.updateToolStripMenuItem.Size = new System.Drawing.Size(131, 22); this.updateToolStripMenuItem.Text = "Update..."; this.updateToolStripMenuItem.Click += new System.EventHandler(this.UpdateToolStripMenuItem_Click); // // logViewToolStripMenuItem // this.logViewToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("logViewToolStripMenuItem.Image"))); this.logViewToolStripMenuItem.Name = "logViewToolStripMenuItem"; this.logViewToolStripMenuItem.Size = new System.Drawing.Size(131, 22); this.logViewToolStripMenuItem.Text = "Log View..."; this.logViewToolStripMenuItem.Click += new System.EventHandler(this.LogViewToolStripMenuItem_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(128, 6); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image"))); this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(131, 22); this.aboutToolStripMenuItem.Text = "About..."; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.OnContextMenuAboutClick); // // toolStripMenuItem3 // this.toolStripMenuItem3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem3.Image"))); this.toolStripMenuItem3.Name = "toolStripMenuItem3"; this.toolStripMenuItem3.Size = new System.Drawing.Size(131, 22); this.toolStripMenuItem3.Text = "Quit"; this.toolStripMenuItem3.Click += new System.EventHandler(this.OnContextMenuQuitClick); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "MainForm"; this.Opacity = 0D; this.ShowIcon = false; this.ShowInTaskbar = false; this.Text = "Zzz: Main"; this.WindowState = System.Windows.Forms.FormWindowState.Minimized; this.Load += new System.EventHandler(this.MainForm_Load); this.contextMenuStrip1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private ContextMenuStrip contextMenuStrip1; private ToolStripMenuItem aboutToolStripMenuItem; private ToolStripSeparator toolStripSeparator1; private ToolStripMenuItem toolStripEnabledMenuItem; private ToolStripMenuItem toolStripMenuItem3; private ToolStripMenuItem toolStripMenuItem4; private ToolStripSeparator toolStripSeparator3; public NotifyIcon notifyIcon1; private ToolStripMenuItem updateToolStripMenuItem; private ToolStripMenuItem hibernateToolStripMenuItem; private ToolStripMenuItem logViewToolStripMenuItem; private ToolStripSeparator toolStripSeparator2; } }