Commit 4be45884 by liulongfei

所有页面均创建Geom

parent 22cbcbae
...@@ -56,7 +56,7 @@ namespace VIZ.Package.Service ...@@ -56,7 +56,7 @@ namespace VIZ.Package.Service
this.ExecuteLoadOnePage(page); this.ExecuteLoadOnePage(page);
// 执行创建切换逻辑Geom // 执行创建切换逻辑Geom
this.ExecuteCreateGeomWithTransitionLogic(page); this.ExecuteCreateGeom(page);
Debug.WriteLine($"加载场景 结束 [ {page.Scene} ]"); Debug.WriteLine($"加载场景 结束 [ {page.Scene} ]");
} }
...@@ -101,10 +101,13 @@ namespace VIZ.Package.Service ...@@ -101,10 +101,13 @@ namespace VIZ.Package.Service
/// <summary> /// <summary>
/// 执行创建切换逻辑Geom /// 执行创建切换逻辑Geom
/// </summary> /// </summary>
/// <remarks>
/// 所有场景均生成GEOM
/// </remarks>
/// <param name="pageBase">模板或页</param> /// <param name="pageBase">模板或页</param>
private void ExecuteCreateGeomWithTransitionLogic(PageModelBase pageBase) private void ExecuteCreateGeom(PageModelBase pageBase)
{ {
if (pageBase == null || !pageBase.TransitionLogic) if (pageBase == null)
return; return;
ConnModel conn = ApplicationDomainEx.PreviewConn; ConnModel conn = ApplicationDomainEx.PreviewConn;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment