码迷,mamicode.com
首页 > 其他好文 > 详细

arcgis【0基础 】【1】 中如何添加MXD

时间:2017-04-08 09:25:12      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:document   pdo   添加   ima   focus   如何   res   string   sage   

1,第一种方法 MapControl  直接添加

 

if (!axMapControl1.CheckMxFile(FileName))
{
MessageBox.Show("文件不合法");
return;
}
else
{

axMapControl1.LoadMxFile(FileName);
}

  

第二种方法:通过MapDocument  进行添加

   string FileName = open.FileName;
                IMapDocument mapDoc = new MapDocument();
                mapDoc.Open(FileName, "");
                axMapControl1.Map = mapDoc.ActiveView.FocusMap;
                axMapControl1.ActiveView.Refresh();

  

arcgis【0基础 】【1】 中如何添加MXD

标签:document   pdo   添加   ima   focus   如何   res   string   sage   

原文地址:http://www.cnblogs.com/huchaoheng/p/6680853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!