管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-01-04 75ce904463b89dd8c311d90ea479fab877d9245c
TEWin/FrmWin.cs
@@ -41,8 +41,7 @@
                mainUrl = Application.StartupPath;
                bool isTest = "1" == ConfigurationManager.AppSettings["isTest"];
                string fly = Path.Combine(Application.StartupPath, "Resources\\sample.fly");
                fly = isTest ? "E:\\data\\opting\\2022.fly" : fly;
                string fly = isTest ? ConfigurationManager.AppSettings["testFly"] : Path.Combine(Application.StartupPath, "Resources\\sample.fly");
                if (!File.Exists(fly))
                {
                    LogOut.Error("Fly文件不存在:" + fly);
@@ -58,8 +57,8 @@
                if (isTest)
                {
                    this.FormBorderStyle = FormBorderStyle.FixedSingle;
                    tree.FormBorderStyle = FormBorderStyle.FixedSingle;
                    this.FormBorderStyle = FormBorderStyle.Sizable;
                    tree.FormBorderStyle = FormBorderStyle.Sizable;
                    tool = new FrmTool(this);
                    tool.Show();
                }
@@ -268,6 +267,7 @@
            return str;
        }
        #region 角量算+空间统计+空间分析+osgblab
        public void AngleMeasurement()
        {
            //
@@ -280,12 +280,13 @@
        private void SpatialAnalysis()
        {
            //
            this.ShowHtml("空间分析", mainUrl + @"\Resources\SpatialQuery\SpatialQuery.html", 20, 20, 420, 285);
        }
        public void InvokeOsgbLab()
        {
            //
        }
        #endregion
    }
}