MainForm.Designer.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. namespace ProjectManagementSystem
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  31. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  32. this.关闭系统ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.contextMenuStrip1.SuspendLayout();
  34. this.SuspendLayout();
  35. //
  36. // notifyIcon1
  37. //
  38. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  39. this.notifyIcon1.Text = "PMS系统";
  40. this.notifyIcon1.Visible = true;
  41. this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
  42. //
  43. // contextMenuStrip1
  44. //
  45. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  46. this.关闭系统ToolStripMenuItem});
  47. this.contextMenuStrip1.Name = "contextMenuStrip1";
  48. this.contextMenuStrip1.Size = new System.Drawing.Size(125, 26);
  49. //
  50. // 关闭系统ToolStripMenuItem
  51. //
  52. this.关闭系统ToolStripMenuItem.Name = "关闭系统ToolStripMenuItem";
  53. this.关闭系统ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
  54. this.关闭系统ToolStripMenuItem.Text = "关闭系统";
  55. this.关闭系统ToolStripMenuItem.Click += new System.EventHandler(this.关闭系统ToolStripMenuItem_Click);
  56. //
  57. // MainForm
  58. //
  59. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  60. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  61. this.ClientSize = new System.Drawing.Size(593, 523);
  62. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  63. this.Name = "MainForm";
  64. this.Text = "MainForm";
  65. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  66. this.Load += new System.EventHandler(this.MainForm_Load);
  67. this.contextMenuStrip1.ResumeLayout(false);
  68. this.ResumeLayout(false);
  69. }
  70. #endregion
  71. private System.Windows.Forms.NotifyIcon notifyIcon1;
  72. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  73. private System.Windows.Forms.ToolStripMenuItem 关闭系统ToolStripMenuItem;
  74. }
  75. }