using Yw.WebBrower; namespace PBS.WinFrmUI { /// /// 查看项目列表交互对象 /// public class MapViewProjectListCallBackObj : CallBackObj, IMapViewProjectListEvents { public event Action JumpSimulationEvent; public void JumpSimulation(string msg) { if (JumpSimulationEvent != null) { this.JumpSimulationEvent?.Invoke(msg); } } } }