| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- namespace ErpServer
- {
- partial class MainForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.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.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
- this.menuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.stripShow = new System.Windows.Forms.ToolStripMenuItem();
- this.stripPai = new System.Windows.Forms.ToolStripMenuItem();
- this.stripRestartIIS = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
- this.stripExit = new System.Windows.Forms.ToolStripMenuItem();
- this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
- this.txtCon = new System.Windows.Forms.RichTextBox();
- this.menuStrip.SuspendLayout();
- this.SuspendLayout();
- //
- // menuStrip
- //
- this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.stripShow,
- this.stripPai,
- this.stripRestartIIS,
- this.toolStripMenuItem1,
- this.stripExit});
- this.menuStrip.Name = "menuStrip";
- this.menuStrip.Size = new System.Drawing.Size(141, 98);
- //
- // stripShow
- //
- this.stripShow.Name = "stripShow";
- this.stripShow.Size = new System.Drawing.Size(140, 22);
- this.stripShow.Text = "显示窗口(&T)";
- this.stripShow.Click += new System.EventHandler(this.stripKis_Click);
- //
- // stripPai
- //
- this.stripPai.Name = "stripPai";
- this.stripPai.Size = new System.Drawing.Size(140, 22);
- this.stripPai.Text = "手动派单(&P)";
- this.stripPai.Click += new System.EventHandler(this.stripPai_Click);
- //
- // stripRestartIIS
- //
- this.stripRestartIIS.Name = "stripRestartIIS";
- this.stripRestartIIS.Size = new System.Drawing.Size(140, 22);
- this.stripRestartIIS.Text = "重启站点(&C)";
- //
- // toolStripMenuItem1
- //
- this.toolStripMenuItem1.Name = "toolStripMenuItem1";
- this.toolStripMenuItem1.Size = new System.Drawing.Size(137, 6);
- //
- // stripExit
- //
- this.stripExit.Name = "stripExit";
- this.stripExit.Size = new System.Drawing.Size(140, 22);
- this.stripExit.Text = "退出(&E)";
- this.stripExit.Click += new System.EventHandler(this.stripExit_Click);
- //
- // notifyIcon
- //
- this.notifyIcon.ContextMenuStrip = this.menuStrip;
- this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
- this.notifyIcon.Text = "服务端";
- this.notifyIcon.Visible = true;
- //
- // txtCon
- //
- this.txtCon.Location = new System.Drawing.Point(1, 4);
- this.txtCon.Name = "txtCon";
- this.txtCon.Size = new System.Drawing.Size(682, 398);
- this.txtCon.TabIndex = 1;
- this.txtCon.Text = "";
- //
- // MainForm
- //
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.ClientSize = new System.Drawing.Size(686, 405);
- this.Controls.Add(this.txtCon);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.MaximizeBox = false;
- this.Name = "MainForm";
- this.ShowIcon = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "领淘服务端";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
- this.Load += new System.EventHandler(this.MainForm_Load);
- this.menuStrip.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.ContextMenuStrip menuStrip;
- private System.Windows.Forms.ToolStripMenuItem stripExit;
- private System.Windows.Forms.NotifyIcon notifyIcon;
- private System.Windows.Forms.ToolStripMenuItem stripShow;
- private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
- private System.Windows.Forms.RichTextBox txtCon;
- private System.Windows.Forms.ToolStripMenuItem stripRestartIIS;
- private System.Windows.Forms.ToolStripMenuItem stripPai;
- }
- }
|