MainForm.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. namespace ErpServer
  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.menuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  31. this.stripShow = new System.Windows.Forms.ToolStripMenuItem();
  32. this.stripPai = new System.Windows.Forms.ToolStripMenuItem();
  33. this.stripRestartIIS = new System.Windows.Forms.ToolStripMenuItem();
  34. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
  35. this.stripExit = new System.Windows.Forms.ToolStripMenuItem();
  36. this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
  37. this.txtCon = new System.Windows.Forms.RichTextBox();
  38. this.menuStrip.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // menuStrip
  42. //
  43. this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  44. this.stripShow,
  45. this.stripPai,
  46. this.stripRestartIIS,
  47. this.toolStripMenuItem1,
  48. this.stripExit});
  49. this.menuStrip.Name = "menuStrip";
  50. this.menuStrip.Size = new System.Drawing.Size(141, 98);
  51. //
  52. // stripShow
  53. //
  54. this.stripShow.Name = "stripShow";
  55. this.stripShow.Size = new System.Drawing.Size(140, 22);
  56. this.stripShow.Text = "显示窗口(&T)";
  57. this.stripShow.Click += new System.EventHandler(this.stripKis_Click);
  58. //
  59. // stripPai
  60. //
  61. this.stripPai.Name = "stripPai";
  62. this.stripPai.Size = new System.Drawing.Size(140, 22);
  63. this.stripPai.Text = "手动派单(&P)";
  64. this.stripPai.Click += new System.EventHandler(this.stripPai_Click);
  65. //
  66. // stripRestartIIS
  67. //
  68. this.stripRestartIIS.Name = "stripRestartIIS";
  69. this.stripRestartIIS.Size = new System.Drawing.Size(140, 22);
  70. this.stripRestartIIS.Text = "重启站点(&C)";
  71. //
  72. // toolStripMenuItem1
  73. //
  74. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  75. this.toolStripMenuItem1.Size = new System.Drawing.Size(137, 6);
  76. //
  77. // stripExit
  78. //
  79. this.stripExit.Name = "stripExit";
  80. this.stripExit.Size = new System.Drawing.Size(140, 22);
  81. this.stripExit.Text = "退出(&E)";
  82. this.stripExit.Click += new System.EventHandler(this.stripExit_Click);
  83. //
  84. // notifyIcon
  85. //
  86. this.notifyIcon.ContextMenuStrip = this.menuStrip;
  87. this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
  88. this.notifyIcon.Text = "服务端";
  89. this.notifyIcon.Visible = true;
  90. //
  91. // txtCon
  92. //
  93. this.txtCon.Location = new System.Drawing.Point(1, 4);
  94. this.txtCon.Name = "txtCon";
  95. this.txtCon.Size = new System.Drawing.Size(682, 398);
  96. this.txtCon.TabIndex = 1;
  97. this.txtCon.Text = "";
  98. //
  99. // MainForm
  100. //
  101. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  102. this.ClientSize = new System.Drawing.Size(686, 405);
  103. this.Controls.Add(this.txtCon);
  104. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  105. this.MaximizeBox = false;
  106. this.Name = "MainForm";
  107. this.ShowIcon = false;
  108. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  109. this.Text = "领淘服务端";
  110. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  111. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
  112. this.Load += new System.EventHandler(this.MainForm_Load);
  113. this.menuStrip.ResumeLayout(false);
  114. this.ResumeLayout(false);
  115. }
  116. #endregion
  117. private System.Windows.Forms.ContextMenuStrip menuStrip;
  118. private System.Windows.Forms.ToolStripMenuItem stripExit;
  119. private System.Windows.Forms.NotifyIcon notifyIcon;
  120. private System.Windows.Forms.ToolStripMenuItem stripShow;
  121. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
  122. private System.Windows.Forms.RichTextBox txtCon;
  123. private System.Windows.Forms.ToolStripMenuItem stripRestartIIS;
  124. private System.Windows.Forms.ToolStripMenuItem stripPai;
  125. }
  126. }