using System; using System.Collections.Generic; using System.Text; using Estsh.Client.Base; using System.Windows.Forms; namespace Estsh.Client.StepLibrary { public class BlankRoute : StepBase { public BlankRoute() { InitializeComponent(); } public override bool Do() { this.Visible = true; this.BringToFront(); Action(this, new EventArgs()); // 工步完成 Complate(this, new EventArgs()); return base.Do(); } private void InitializeComponent() { this.SuspendLayout(); // // CheckRoute // this.Name = "CheckRoute"; this.Size = new System.Drawing.Size(599, 391); this.ResumeLayout(false); } } }