namespace Bruce_Banner
{
partial class Form1
{
///
/// 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(Form1));
this.label = new System.Windows.Forms.Label();
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.setLevelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.unclassifiedMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.confidentialMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.secretMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.topSecretMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.quitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip.SuspendLayout();
this.SuspendLayout();
//
// label
//
this.label.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label.AutoSize = true;
this.label.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.label.ForeColor = System.Drawing.SystemColors.WindowText;
this.label.Location = new System.Drawing.Point(12, 15);
this.label.Margin = new System.Windows.Forms.Padding(0);
this.label.MaximumSize = new System.Drawing.Size(85, 13);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(84, 13);
this.label.TabIndex = 0;
this.label.Text = global::Bruce_Banner.Properties.Settings.Default.level;
//
// notifyIcon
//
this.notifyIcon.ContextMenuStrip = this.contextMenuStrip;
this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
this.notifyIcon.Text = "Bruce Banner";
this.notifyIcon.Visible = true;
//
// contextMenuStrip
//
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.setLevelMenuItem,
this.aboutMenuItem,
this.quitMenuItem});
this.contextMenuStrip.Name = "contextMenuStrip";
this.contextMenuStrip.Size = new System.Drawing.Size(121, 70);
//
// setLevelMenuItem
//
this.setLevelMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.unclassifiedMenuItem,
this.confidentialMenuItem,
this.secretMenuItem,
this.topSecretMenuItem});
this.setLevelMenuItem.Name = "setLevelMenuItem";
this.setLevelMenuItem.Size = new System.Drawing.Size(120, 22);
this.setLevelMenuItem.Text = "Set Level";
//
// unclassifiedMenuItem
//
this.unclassifiedMenuItem.Name = "unclassifiedMenuItem";
this.unclassifiedMenuItem.Size = new System.Drawing.Size(156, 22);
this.unclassifiedMenuItem.Text = "UNCLASSIFIED";
this.unclassifiedMenuItem.Click += new System.EventHandler(this.tickLevel);
//
// confidentialMenuItem
//
this.confidentialMenuItem.Name = "confidentialMenuItem";
this.confidentialMenuItem.Size = new System.Drawing.Size(156, 22);
this.confidentialMenuItem.Text = "CONFIDENTIAL";
this.confidentialMenuItem.Click += new System.EventHandler(this.tickLevel);
//
// secretMenuItem
//
this.secretMenuItem.Name = "secretMenuItem";
this.secretMenuItem.Size = new System.Drawing.Size(156, 22);
this.secretMenuItem.Text = "SECRET";
this.secretMenuItem.Click += new System.EventHandler(this.tickLevel);
//
// topSecretMenuItem
//
this.topSecretMenuItem.Name = "topSecretMenuItem";
this.topSecretMenuItem.Size = new System.Drawing.Size(156, 22);
this.topSecretMenuItem.Text = "TOP SECRET";
this.topSecretMenuItem.Click += new System.EventHandler(this.tickLevel);
//
// aboutMenuItem
//
this.aboutMenuItem.Name = "aboutMenuItem";
this.aboutMenuItem.Size = new System.Drawing.Size(120, 22);
this.aboutMenuItem.Text = "About";
this.aboutMenuItem.Click += new System.EventHandler(this.about_Click);
//
// quitMenuItem
//
this.quitMenuItem.Name = "quitMenuItem";
this.quitMenuItem.Size = new System.Drawing.Size(120, 22);
this.quitMenuItem.Text = "Quit";
this.quitMenuItem.Click += new System.EventHandler(this.quit_Clicked);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(92, 36);
this.ControlBox = false;
this.Controls.Add(this.label);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form1";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.TopMost = true;
this.Load += new System.EventHandler(this.Form1_Load);
this.contextMenuStrip.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label;
private System.Windows.Forms.NotifyIcon notifyIcon;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem setLevelMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutMenuItem;
private System.Windows.Forms.ToolStripMenuItem quitMenuItem;
private System.Windows.Forms.ToolStripMenuItem unclassifiedMenuItem;
private System.Windows.Forms.ToolStripMenuItem confidentialMenuItem;
private System.Windows.Forms.ToolStripMenuItem secretMenuItem;
private System.Windows.Forms.ToolStripMenuItem topSecretMenuItem;
}
}