2024-02-07 08:42:57 -05:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Chapter6
|
|
|
|
|
{
|
|
|
|
|
partial class frmMain
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required designer variable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clean up any resources being used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && (components != null))
|
|
|
|
|
{
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required method for Designer support - do not modify
|
|
|
|
|
/// the contents of this method with the code editor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
this.Menu = new System.Windows.Forms.MenuStrip();
|
|
|
|
|
this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuFileExit = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuEdit = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuEditCalculate = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuEditSummary = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuEditShowStudents = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuEditAddStudents = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuEditSearchStudent = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuWindow = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuWindowArrangeIcons = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuWindowsCascade = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.munWindowHorizontal = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuWindowVertical = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuWindowCloseAll = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.mnuHelpAbout = new System.Windows.Forms.ToolStripMenuItem();
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
|
|
|
this.lblUser = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
|
|
this.lblDateTime = new System.Windows.Forms.ToolStripStatusLabel();
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.Menu.SuspendLayout();
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.statusStrip1.SuspendLayout();
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// Menu
|
|
|
|
|
//
|
|
|
|
|
this.Menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuFile, this.mnuEdit, this.mnuWindow, this.mnuHelp });
|
|
|
|
|
this.Menu.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.Menu.Name = "Menu";
|
|
|
|
|
this.Menu.Size = new System.Drawing.Size(800, 24);
|
|
|
|
|
this.Menu.TabIndex = 1;
|
|
|
|
|
this.Menu.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// mnuFile
|
|
|
|
|
//
|
|
|
|
|
this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuFileExit });
|
|
|
|
|
this.mnuFile.Name = "mnuFile";
|
|
|
|
|
this.mnuFile.Size = new System.Drawing.Size(37, 20);
|
|
|
|
|
this.mnuFile.Text = "File";
|
|
|
|
|
//
|
|
|
|
|
// mnuFileExit
|
|
|
|
|
//
|
|
|
|
|
this.mnuFileExit.Name = "mnuFileExit";
|
2024-02-07 08:56:04 -05:00
|
|
|
|
this.mnuFileExit.Size = new System.Drawing.Size(93, 22);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.mnuFileExit.Text = "Exit";
|
|
|
|
|
this.mnuFileExit.Click += new System.EventHandler(this.mnuFileExit_Click_1);
|
|
|
|
|
//
|
|
|
|
|
// mnuEdit
|
|
|
|
|
//
|
|
|
|
|
this.mnuEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuEditCalculate, this.mnuEditSummary, this.mnuEditShowStudents, this.mnuEditAddStudents, this.mnuEditSearchStudent });
|
|
|
|
|
this.mnuEdit.Name = "mnuEdit";
|
|
|
|
|
this.mnuEdit.Size = new System.Drawing.Size(39, 20);
|
|
|
|
|
this.mnuEdit.Text = "Edit";
|
|
|
|
|
//
|
|
|
|
|
// mnuEditCalculate
|
|
|
|
|
//
|
|
|
|
|
this.mnuEditCalculate.Name = "mnuEditCalculate";
|
|
|
|
|
this.mnuEditCalculate.Size = new System.Drawing.Size(153, 22);
|
|
|
|
|
this.mnuEditCalculate.Text = "Calculate";
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.mnuEditCalculate.Click += new System.EventHandler(this.mnuEditCalculate_Click);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
//
|
|
|
|
|
// mnuEditSummary
|
|
|
|
|
//
|
|
|
|
|
this.mnuEditSummary.Name = "mnuEditSummary";
|
|
|
|
|
this.mnuEditSummary.Size = new System.Drawing.Size(153, 22);
|
|
|
|
|
this.mnuEditSummary.Text = "Summary";
|
2024-02-07 08:56:04 -05:00
|
|
|
|
this.mnuEditSummary.Click += new System.EventHandler(this.mnuEditSummary_Click);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
//
|
|
|
|
|
// mnuEditShowStudents
|
|
|
|
|
//
|
|
|
|
|
this.mnuEditShowStudents.Name = "mnuEditShowStudents";
|
|
|
|
|
this.mnuEditShowStudents.Size = new System.Drawing.Size(153, 22);
|
|
|
|
|
this.mnuEditShowStudents.Text = "Show Students";
|
|
|
|
|
//
|
|
|
|
|
// mnuEditAddStudents
|
|
|
|
|
//
|
|
|
|
|
this.mnuEditAddStudents.Name = "mnuEditAddStudents";
|
|
|
|
|
this.mnuEditAddStudents.Size = new System.Drawing.Size(153, 22);
|
|
|
|
|
this.mnuEditAddStudents.Text = "Add Students";
|
|
|
|
|
//
|
|
|
|
|
// mnuEditSearchStudent
|
|
|
|
|
//
|
|
|
|
|
this.mnuEditSearchStudent.Name = "mnuEditSearchStudent";
|
|
|
|
|
this.mnuEditSearchStudent.Size = new System.Drawing.Size(153, 22);
|
|
|
|
|
this.mnuEditSearchStudent.Text = "Search Student";
|
|
|
|
|
//
|
|
|
|
|
// mnuWindow
|
|
|
|
|
//
|
|
|
|
|
this.mnuWindow.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuWindowArrangeIcons, this.mnuWindowsCascade, this.munWindowHorizontal, this.mnuWindowVertical, this.mnuWindowCloseAll });
|
|
|
|
|
this.mnuWindow.Name = "mnuWindow";
|
|
|
|
|
this.mnuWindow.Size = new System.Drawing.Size(63, 20);
|
|
|
|
|
this.mnuWindow.Text = "Window";
|
|
|
|
|
//
|
|
|
|
|
// mnuWindowArrangeIcons
|
|
|
|
|
//
|
|
|
|
|
this.mnuWindowArrangeIcons.Name = "mnuWindowArrangeIcons";
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.mnuWindowArrangeIcons.Size = new System.Drawing.Size(147, 22);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.mnuWindowArrangeIcons.Text = "Arrange Icons";
|
|
|
|
|
//
|
|
|
|
|
// mnuWindowsCascade
|
|
|
|
|
//
|
|
|
|
|
this.mnuWindowsCascade.Name = "mnuWindowsCascade";
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.mnuWindowsCascade.Size = new System.Drawing.Size(147, 22);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.mnuWindowsCascade.Text = "Cascade";
|
2024-02-07 09:30:20 -05:00
|
|
|
|
this.mnuWindowsCascade.Click += new System.EventHandler(this.mnuWindowsCascade_Click);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
//
|
|
|
|
|
// munWindowHorizontal
|
|
|
|
|
//
|
|
|
|
|
this.munWindowHorizontal.Name = "munWindowHorizontal";
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.munWindowHorizontal.Size = new System.Drawing.Size(147, 22);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.munWindowHorizontal.Text = "Horizontal";
|
2024-02-07 09:30:20 -05:00
|
|
|
|
this.munWindowHorizontal.Click += new System.EventHandler(this.munWindowHorizontal_Click);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
//
|
|
|
|
|
// mnuWindowVertical
|
|
|
|
|
//
|
|
|
|
|
this.mnuWindowVertical.Name = "mnuWindowVertical";
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.mnuWindowVertical.Size = new System.Drawing.Size(147, 22);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.mnuWindowVertical.Text = "Vertical";
|
2024-02-07 09:30:20 -05:00
|
|
|
|
this.mnuWindowVertical.Click += new System.EventHandler(this.mnuWindowVertical_Click);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
//
|
|
|
|
|
// mnuWindowCloseAll
|
|
|
|
|
//
|
|
|
|
|
this.mnuWindowCloseAll.Name = "mnuWindowCloseAll";
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.mnuWindowCloseAll.Size = new System.Drawing.Size(147, 22);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.mnuWindowCloseAll.Text = "Close All";
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.mnuWindowCloseAll.Click += new System.EventHandler(this.mnuWindowCloseAll_Click);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
//
|
|
|
|
|
// mnuHelp
|
|
|
|
|
//
|
|
|
|
|
this.mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuHelpAbout });
|
|
|
|
|
this.mnuHelp.Name = "mnuHelp";
|
|
|
|
|
this.mnuHelp.Size = new System.Drawing.Size(44, 20);
|
|
|
|
|
this.mnuHelp.Text = "Help";
|
|
|
|
|
//
|
|
|
|
|
// mnuHelpAbout
|
|
|
|
|
//
|
|
|
|
|
this.mnuHelpAbout.Name = "mnuHelpAbout";
|
|
|
|
|
this.mnuHelpAbout.Size = new System.Drawing.Size(107, 22);
|
|
|
|
|
this.mnuHelpAbout.Text = "About";
|
2024-02-07 09:30:20 -05:00
|
|
|
|
this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
//
|
2024-02-07 10:29:08 -05:00
|
|
|
|
// statusStrip1
|
|
|
|
|
//
|
|
|
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblUser, this.lblDateTime });
|
|
|
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 428);
|
|
|
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
|
|
|
this.statusStrip1.Size = new System.Drawing.Size(800, 22);
|
|
|
|
|
this.statusStrip1.TabIndex = 3;
|
|
|
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
|
|
|
//
|
|
|
|
|
// lblUser
|
|
|
|
|
//
|
|
|
|
|
this.lblUser.Name = "lblUser";
|
|
|
|
|
this.lblUser.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
|
|
|
|
this.lblUser.Size = new System.Drawing.Size(0, 17);
|
|
|
|
|
this.lblUser.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
|
|
|
|
|
//
|
|
|
|
|
// lblDateTime
|
|
|
|
|
//
|
|
|
|
|
this.lblDateTime.Margin = new System.Windows.Forms.Padding(470, 3, 0, 2);
|
|
|
|
|
this.lblDateTime.Name = "lblDateTime";
|
|
|
|
|
this.lblDateTime.Size = new System.Drawing.Size(0, 17);
|
|
|
|
|
//
|
2024-02-07 08:42:57 -05:00
|
|
|
|
// frmMain
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.Controls.Add(this.statusStrip1);
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.Controls.Add(this.Menu);
|
|
|
|
|
this.IsMdiContainer = true;
|
|
|
|
|
this.MainMenuStrip = this.Menu;
|
|
|
|
|
this.Name = "frmMain";
|
|
|
|
|
this.Text = "MDI";
|
|
|
|
|
this.Menu.ResumeLayout(false);
|
|
|
|
|
this.Menu.PerformLayout();
|
2024-02-07 10:29:08 -05:00
|
|
|
|
this.statusStrip1.ResumeLayout(false);
|
|
|
|
|
this.statusStrip1.PerformLayout();
|
2024-02-07 08:42:57 -05:00
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-07 10:29:08 -05:00
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel lblDateTime;
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel lblUser;
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
|
|
|
|
2024-02-07 08:42:57 -05:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEditCalculate;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEditSummary;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEditShowStudents;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEditAddStudents;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEditSearchStudent;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuWindow;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuWindowArrangeIcons;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuWindowsCascade;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem munWindowHorizontal;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuWindowVertical;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuWindowCloseAll;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuHelp;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuHelpAbout;
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.MenuStrip Menu;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuFile;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuFileExit;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEdit;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|