首页 / 浏览问题 / 组件GIS / 问题详情
剖面分析里面的方法调用后程序卡死
15EXP 2017年06月23日
private void ShowAnysResult()
        {
            if(m_profileFeature != null && canProfile)
            {
                GeoLine3D line3d = m_profileFeature.GetGeometry() as GeoLine3D;
                profile.StartPoint = line3d[0][0];
                profile.EndPoint = line3d[0][1];
                Bitmap bitmap = profile.OutputProfileToBitMap();
                var retForm = new FormProfileAnalyseResult(bitmap);
                retForm.ShowDialog();
            }
        }

这个方法直接调用的时候,会在 Bitmap bitmap = profile.OutputProfileToBitMap() 这一句卡死

但是如果把这个方法在 sceneControl 的 MouseDown 事件下调用,就可以正常运行

1个回答

有没有用剖面分析的范例试试,正常吗?
3,389EXP 2017年06月23日
...