You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/UCDraw/PcgDrawR/IAppEnvironment.cs

21 lines
454 B
C#

using AI.AgentIntegration;
using GeoSigma.UCDraw.UC;
using GeoSigmaDrawLib;
namespace PcgDrawR
{
/// <summary>
/// 封装领域服务访问的应用环境依赖。
/// 由 AppController 实现并传递给各服务。
/// </summary>
public interface IAppEnvironment
{
FormMain MainForm { get; }
AppState State { get; }
UCDrawEdit? ActiveUCDrawEdit { get; }
GeoSigmaXY? ActiveGeo { get; }
}
}