You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
856 B
C#

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);
}
}
}