终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
529 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Compiler
  7. {
  8. public interface IExecutable
  9. {
  10. /// <summary>
  11. /// 是否执行
  12. /// </summary>
  13. bool IsExecuteState { get; set; }
  14. /// <summary>
  15. /// 运行程序 注册事件
  16. /// </summary>
  17. void Register();
  18. /// <summary>
  19. /// 控件类型
  20. /// </summary>
  21. string ControlType { get; }
  22. }
  23. }