using Global; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; /// /// /// namespace ModelBasic { /// /// /// public class TheVar { /// /// 工艺树刷新 /// public Action refreshCraftTree { get; set; } = null; /// /// 传递工艺组 /// public Func transmitCraftGroup { get; set; } = null; /// /// 传递模型名 /// public Func transmitModelName { get; set; } = null; /// /// 非仿真工艺(空工艺),工艺组的传递 /// public Func transmitCraftGroup_UnSim { get; set; } = null; /// /// (位置控制器)关闭 /// public Func closeSeatOperationForm { get; set; } = null; /// /// (位置控制器)选择模型发送消息 /// public Func currTreeSelectModelHandler_SeatOperation { get; set; } = null; /// /// 传递逻辑脚本名称 /// public static Func transitionEditorPageScriptNameUpdate { get; set; } = null; } }