| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | namespace WCS.WFormServices{    partial class FromServices    {        /// <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.btnStart = new System.Windows.Forms.Button();            this.btnClose = new System.Windows.Forms.Button();            this.lblMessage = new System.Windows.Forms.Label();            this.SuspendLayout();            //             // btnStart            //             this.btnStart.Location = new System.Drawing.Point(44, 49);            this.btnStart.Name = "btnStart";            this.btnStart.Size = new System.Drawing.Size(150, 53);            this.btnStart.TabIndex = 0;            this.btnStart.Text = "启动WCS";            this.btnStart.UseVisualStyleBackColor = true;            this.btnStart.Click += new System.EventHandler(this.btnStart_Click);            //             // btnClose            //             this.btnClose.Enabled = false;            this.btnClose.Location = new System.Drawing.Point(284, 49);            this.btnClose.Name = "btnClose";            this.btnClose.Size = new System.Drawing.Size(150, 53);            this.btnClose.TabIndex = 1;            this.btnClose.Text = "关闭WCS";            this.btnClose.UseVisualStyleBackColor = true;            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);            //             // lblMessage            //             this.lblMessage.AutoSize = true;            this.lblMessage.ForeColor = System.Drawing.Color.Red;            this.lblMessage.Location = new System.Drawing.Point(56, 131);            this.lblMessage.Name = "lblMessage";            this.lblMessage.Size = new System.Drawing.Size(68, 17);            this.lblMessage.TabIndex = 2;            this.lblMessage.Text = "服务未启动";            //             // FromServices            //             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.ClientSize = new System.Drawing.Size(528, 177);            this.Controls.Add(this.lblMessage);            this.Controls.Add(this.btnClose);            this.Controls.Add(this.btnStart);            this.MaximizeBox = false;            this.Name = "FromServices";            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;            this.Text = "Form1";            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FromServices_FormClosing);            this.ResumeLayout(false);            this.PerformLayout();        }        #endregion        private System.Windows.Forms.Button btnStart;        private System.Windows.Forms.Button btnClose;        private System.Windows.Forms.Label lblMessage;    }}
 |