MainForm.Designer.cs 6.3 KB

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