终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

25 wiersze
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. }