MainForm.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.tabControl1 = new System.Windows.Forms.TabControl();
  34. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  35. this.contextMenuStrip1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // notifyIcon1
  39. //
  40. this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
  41. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  42. this.notifyIcon1.Text = "PMS系统";
  43. this.notifyIcon1.Visible = true;
  44. this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
  45. //
  46. // contextMenuStrip1
  47. //
  48. this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
  49. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  50. this.关闭系统ToolStripMenuItem});
  51. this.contextMenuStrip1.Name = "contextMenuStrip1";
  52. this.contextMenuStrip1.Size = new System.Drawing.Size(153, 34);
  53. //
  54. // 关闭系统ToolStripMenuItem
  55. //
  56. this.关闭系统ToolStripMenuItem.Name = "关闭系统ToolStripMenuItem";
  57. this.关闭系统ToolStripMenuItem.Size = new System.Drawing.Size(152, 30);
  58. this.关闭系统ToolStripMenuItem.Text = "关闭系统";
  59. this.关闭系统ToolStripMenuItem.Click += new System.EventHandler(this.关闭系统ToolStripMenuItem_Click);
  60. //
  61. // tabControl1
  62. //
  63. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  65. this.tabControl1.Margin = new System.Windows.Forms.Padding(2);
  66. this.tabControl1.Name = "tabControl1";
  67. this.tabControl1.SelectedIndex = 0;
  68. this.tabControl1.Size = new System.Drawing.Size(730, 410);
  69. this.tabControl1.TabIndex = 1;
  70. //
  71. // linkLabel1
  72. //
  73. this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  74. | System.Windows.Forms.AnchorStyles.Right)));
  75. this.linkLabel1.AutoSize = true;
  76. this.linkLabel1.Location = new System.Drawing.Point(590, 5);
  77. this.linkLabel1.Name = "linkLabel1";
  78. this.linkLabel1.Size = new System.Drawing.Size(125, 18);
  79. this.linkLabel1.TabIndex = 0;
  80. this.linkLabel1.TabStop = true;
  81. this.linkLabel1.Text = "主页 当前任务";
  82. this.linkLabel1.Visible = false;
  83. this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  84. //
  85. // MainForm
  86. //
  87. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  88. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  89. this.ClientSize = new System.Drawing.Size(730, 410);
  90. this.Controls.Add(this.linkLabel1);
  91. this.Controls.Add(this.tabControl1);
  92. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  93. this.Margin = new System.Windows.Forms.Padding(4);
  94. this.Name = "MainForm";
  95. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  96. this.Text = "MainForm";
  97. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  98. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  99. this.Shown += new System.EventHandler(this.MainForm_Shown);
  100. this.contextMenuStrip1.ResumeLayout(false);
  101. this.ResumeLayout(false);
  102. this.PerformLayout();
  103. }
  104. #endregion
  105. private System.Windows.Forms.NotifyIcon notifyIcon1;
  106. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  107. private System.Windows.Forms.ToolStripMenuItem 关闭系统ToolStripMenuItem;
  108. private System.Windows.Forms.TabControl tabControl1;
  109. private System.Windows.Forms.LinkLabel linkLabel1;
  110. }
  111. }