管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-01-11 fbb3ef63775673bdceeb921542d5cd3f06f1ca45
TEWin/FrmWin.cs
@@ -18,13 +18,15 @@
    public partial class FrmWin : Form
    {
        #region 成员变量+构造函数+事件
        string fly;
        FrmTree tree;
        FrmTool tool;
        string mainUrl;
        public SGWorld74 SG;
        public SGWorld71 SG;
        private bool isAngle;
@@ -32,9 +34,9 @@
        private double angleSize;
        private ITerrainLabel74 angleLabel;
        private ITerrainLabel71 angleLabel;
        private ITerrainPolyline74 angleLine;
        private ITerrainPolyline71 angleLine;
        private string angleGroupName = "角量算";
@@ -53,16 +55,15 @@
                mainUrl = Application.StartupPath;
                bool isTest = "1" == ConfigurationManager.AppSettings["isTest"];
                string fly = isTest ? ConfigurationManager.AppSettings["testFly"] : Path.Combine(Application.StartupPath, "Resources\\sample.fly");
                if (!File.Exists(fly))
                this.fly = isTest ? ConfigurationManager.AppSettings["testFly"] : Path.Combine(Application.StartupPath, "Resources\\sample.fly");
                if (!File.Exists(this.fly))
                {
                    LogOut.Error("Fly文件不存在:" + fly);
                    LogOut.Error("Fly文件不存在:" + this.fly);
                    return;
                }
                SG = new SGWorld74();
                SG = new SGWorld71();
                SG.OnLoadFinished += SG_OnLoadFinished;
                SG.Open(fly);
                tree = new FrmTree();
                tree.Show(this);
@@ -73,12 +74,14 @@
                    tree.FormBorderStyle = FormBorderStyle.Sizable;
                    tool = new FrmTool(this);
                    tool.Show();
                    SG.Open(this.fly);
                }
                else
                {
                    this.WindowState = FormWindowState.Maximized;
                    tree.WindowState = FormWindowState.Maximized;
                }
                //else
                //{
                //    this.WindowState = FormWindowState.Maximized;
                //    tree.WindowState = FormWindowState.Maximized;
                //}
            }
            catch (Exception ex)
@@ -89,7 +92,7 @@
        void SG_OnLoadFinished(bool bSuccess)
        {
            //
            this.SG.OnLoadFinished -= SG_OnLoadFinished;
        }
        void FrmWin_FormClosed(object sender, FormClosedEventArgs e)
@@ -138,7 +141,7 @@
                    SG.Command.Execute(1014, 26); break;
                case 0xc6: // 模型数据(*.osgb)
                    ExecCmd(new List<string> { "taskkill /f /t /im MeshLayerTool.exe" }); // SG.Command.Execute(2342, null);
                    RunExe(Path.Combine(ConfigurationManager.AppSettings["tePath"], "MeshLayerTool.exe"), " -RunApp TerraExplorer -RunConvertor -Mode ImportMeshLayer -Type osgb", false);
                    RunExe(Path.Combine(ConfigurationManager.AppSettings["tePath"], "MeshLayerTool.exe"), " -RunConvertor -Mode ImportMeshLayer -Type osgb", false); // -RunApp TerraExplorer
                    break;
                case 0xc7: // 模型数据(*.obj)
                    SG.Command.Execute(1012, 13); break;
@@ -173,6 +176,8 @@
                    SG.Command.Execute(1028, null); break;
                case 0xd6: // 传统4D产品派生(集成osgblab)
                    InvokeOsgbLab(); break;
                case 0xd7: // 打开fly
                    SG.Open(this.fly); break;
            }
        }
@@ -201,7 +206,7 @@
                    this.ShowHtml("坡度分析", mainUrl + @"\Resources\SlopeMapQuery\SlopeMapQuery.html", 20, 20, 350, 365);
                    break;
                case 1045:
                    this.ShowHtml("体积分析", mainUrl + @"\Resources\Volume\Volume.html", 20, 20, 350, 255);
                    this.ShowHtml("体积分析", mainUrl + @"\Resources\Volume\Volume.html", 20, 20, 350, 225);
                    break;
            }
        }