namespace LibraryApp
{
partial class LibraryApp
{
///
/// 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.MainMenu = new System.Windows.Forms.MenuStrip();
this.Login = new System.Windows.Forms.ToolStripMenuItem();
this.Users = new System.Windows.Forms.ToolStripMenuItem();
this.UsersView = new System.Windows.Forms.ToolStripMenuItem();
this.UserSearch = new System.Windows.Forms.ToolStripMenuItem();
this.UserAdd = new System.Windows.Forms.ToolStripMenuItem();
this.UserReports = new System.Windows.Forms.ToolStripMenuItem();
this.Transactions = new System.Windows.Forms.ToolStripMenuItem();
this.Books = new System.Windows.Forms.ToolStripMenuItem();
this.Exit = new System.Windows.Forms.ToolStripMenuItem();
this.MainMenu.SuspendLayout();
this.SuspendLayout();
//
// MainMenu
//
this.MainMenu.BackColor = System.Drawing.Color.NavajoWhite;
this.MainMenu.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.Login,
this.Users,
this.Transactions,
this.Books,
this.Exit});
this.MainMenu.Location = new System.Drawing.Point(0, 0);
this.MainMenu.Name = "MainMenu";
this.MainMenu.Padding = new System.Windows.Forms.Padding(5);
this.MainMenu.Size = new System.Drawing.Size(828, 33);
this.MainMenu.TabIndex = 0;
this.MainMenu.Text = "Main Menu";
//
// Login
//
this.Login.ForeColor = System.Drawing.Color.DarkRed;
this.Login.Name = "Login";
this.Login.Size = new System.Drawing.Size(65, 23);
this.Login.Text = "Login";
this.Login.Click += new System.EventHandler(this.Login_Click);
//
// Users
//
this.Users.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.UsersView,
this.UserSearch,
this.UserAdd,
this.UserReports});
this.Users.ForeColor = System.Drawing.Color.DarkRed;
this.Users.Name = "Users";
this.Users.Size = new System.Drawing.Size(66, 23);
this.Users.Text = "Users";
//
// UsersView
//
this.UsersView.BackColor = System.Drawing.Color.NavajoWhite;
this.UsersView.ForeColor = System.Drawing.Color.DarkRed;
this.UsersView.Name = "UsersView";
this.UsersView.Size = new System.Drawing.Size(226, 24);
this.UsersView.Text = "View Users";
this.UsersView.Click += new System.EventHandler(this.StudentsView_Click);
//
// UserSearch
//
this.UserSearch.BackColor = System.Drawing.Color.NavajoWhite;
this.UserSearch.ForeColor = System.Drawing.Color.DarkRed;
this.UserSearch.Name = "UserSearch";
this.UserSearch.Size = new System.Drawing.Size(226, 24);
this.UserSearch.Text = "Search Users";
//
// UserAdd
//
this.UserAdd.BackColor = System.Drawing.Color.NavajoWhite;
this.UserAdd.ForeColor = System.Drawing.Color.DarkRed;
this.UserAdd.Name = "UserAdd";
this.UserAdd.Size = new System.Drawing.Size(226, 24);
this.UserAdd.Text = "Add A New User";
//
// UserReports
//
this.UserReports.BackColor = System.Drawing.Color.NavajoWhite;
this.UserReports.ForeColor = System.Drawing.Color.DarkRed;
this.UserReports.Name = "UserReports";
this.UserReports.Size = new System.Drawing.Size(226, 24);
this.UserReports.Text = "User Reports";
//
// Transactions
//
this.Transactions.ForeColor = System.Drawing.Color.DarkRed;
this.Transactions.Name = "Transactions";
this.Transactions.Size = new System.Drawing.Size(215, 23);
this.Transactions.Text = "Check-Out Transactions";
//
// Books
//
this.Books.ForeColor = System.Drawing.Color.DarkRed;
this.Books.Name = "Books";
this.Books.Size = new System.Drawing.Size(70, 23);
this.Books.Text = "Books";
//
// Exit
//
this.Exit.ForeColor = System.Drawing.Color.DarkRed;
this.Exit.Name = "Exit";
this.Exit.Size = new System.Drawing.Size(53, 23);
this.Exit.Text = "Exit";
this.Exit.Click += new System.EventHandler(this.Exit_Click);
//
// LibraryApp
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 22F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DarkRed;
this.ClientSize = new System.Drawing.Size(828, 594);
this.Controls.Add(this.MainMenu);
this.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ForeColor = System.Drawing.Color.White;
this.IsMdiContainer = true;
this.MainMenuStrip = this.MainMenu;
this.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.Name = "LibraryApp";
this.Text = "LibraryApp Designed By Dr. Thomas Hicks";
this.Load += new System.EventHandler(this.LibraryApp_Load);
this.MainMenu.ResumeLayout(false);
this.MainMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip MainMenu;
private System.Windows.Forms.ToolStripMenuItem Login;
private System.Windows.Forms.ToolStripMenuItem Users;
private System.Windows.Forms.ToolStripMenuItem Transactions;
private System.Windows.Forms.ToolStripMenuItem Books;
private System.Windows.Forms.ToolStripMenuItem Exit;
private System.Windows.Forms.ToolStripMenuItem UsersView;
private System.Windows.Forms.ToolStripMenuItem UserSearch;
private System.Windows.Forms.ToolStripMenuItem UserAdd;
private System.Windows.Forms.ToolStripMenuItem UserReports;
}
}