摘要:
1.定义接口 public interface IVerifyHandler { void Write(string state); bool OnTimeOut(); void OnError(); }2.在上层中(前端层),继承该接口IVerifyHandler,实现其中的所有方法 //写入状态的方法,实现接口IVerifyHandler public void Write(string state) { //线程调用的方法都不能访问用户控件,必须通过委托调用Form的方法来实现... 阅读全文