Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Compiler
- {
- public interface IExecutable
- {
- /// <summary>
- /// 是否执行
- /// </summary>
- bool IsExecuteState { get; set; }
- /// <summary>
- /// 运行程序 注册事件
- /// </summary>
- void Register();
- /// <summary>
- /// 控件类型
- /// </summary>
- string ControlType { get; }
- }
- }
|