| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 | namespace IMCS.UControl{    partial class UserControl4    {        /// <summary>         /// 必需的设计器变量。        /// </summary>        private System.ComponentModel.IContainer components = null;        /// <summary>         /// 清理所有正在使用的资源。        /// </summary>        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        /// <summary>         /// 设计器支持所需的方法 - 不要修改        /// 使用代码编辑器修改此方法的内容。        /// </summary>        private void InitializeComponent()        {            this.lb_OnLine = new System.Windows.Forms.Label();            this.lb_ConnectionMes = new System.Windows.Forms.Label();            this.lb_Runing = new System.Windows.Forms.Label();            this.lb_Name = new System.Windows.Forms.Label();            this.button1 = new System.Windows.Forms.Button();            this.button2 = new System.Windows.Forms.Button();            this.SuspendLayout();            //             // lb_OnLine            //             this.lb_OnLine.BackColor = System.Drawing.SystemColors.ButtonFace;            this.lb_OnLine.Location = new System.Drawing.Point(85, 4);            this.lb_OnLine.Name = "lb_OnLine";            this.lb_OnLine.Size = new System.Drawing.Size(61, 28);            this.lb_OnLine.TabIndex = 0;            this.lb_OnLine.Text = "label1";            //             // lb_ConnectionMes            //             this.lb_ConnectionMes.Location = new System.Drawing.Point(197, 4);            this.lb_ConnectionMes.Name = "lb_ConnectionMes";            this.lb_ConnectionMes.Size = new System.Drawing.Size(96, 28);            this.lb_ConnectionMes.TabIndex = 0;            this.lb_ConnectionMes.Text = "label1";            //             // lb_Runing            //             this.lb_Runing.Location = new System.Drawing.Point(330, 4);            this.lb_Runing.Name = "lb_Runing";            this.lb_Runing.Size = new System.Drawing.Size(61, 28);            this.lb_Runing.TabIndex = 0;            this.lb_Runing.Text = "label1";            //             // lb_Name            //             this.lb_Name.Location = new System.Drawing.Point(35, 52);            this.lb_Name.Name = "lb_Name";            this.lb_Name.Size = new System.Drawing.Size(111, 28);            this.lb_Name.TabIndex = 0;            this.lb_Name.Text = "label1";            //             // button1            //             this.button1.Location = new System.Drawing.Point(218, 57);            this.button1.Name = "button1";            this.button1.Size = new System.Drawing.Size(75, 23);            this.button1.TabIndex = 2;            this.button1.Text = "button1";            this.button1.UseVisualStyleBackColor = true;            this.button1.Click += new System.EventHandler(this.button1_Click);            //             // button2            //             this.button2.Location = new System.Drawing.Point(218, 103);            this.button2.Name = "button2";            this.button2.Size = new System.Drawing.Size(75, 23);            this.button2.TabIndex = 2;            this.button2.Text = "button1";            this.button2.UseVisualStyleBackColor = true;            this.button2.Click += new System.EventHandler(this.button2_Click);            //             // UserControl4            //             this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.Controls.Add(this.button2);            this.Controls.Add(this.button1);            this.Controls.Add(this.lb_Name);            this.Controls.Add(this.lb_Runing);            this.Controls.Add(this.lb_ConnectionMes);            this.Controls.Add(this.lb_OnLine);            this.Name = "UserControl4";            this.Size = new System.Drawing.Size(462, 270);            this.ResumeLayout(false);        }        #endregion        private System.Windows.Forms.Label lb_OnLine;        private System.Windows.Forms.Label lb_ConnectionMes;        private System.Windows.Forms.Label lb_Runing;        private System.Windows.Forms.Label lb_Name;        private System.Windows.Forms.Button button1;        private System.Windows.Forms.Button button2;    }}
 |