首页 / 浏览问题 / 组件GIS / 问题详情
剖面分析时程序不能运行
10EXP 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日
...