C#+ArcEngine:打开Mxd地图文档

C#+ArcEngine:打开Mxd地图文档_第1张图片     C#+ArcEngine:打开Mxd地图文档_第2张图片

分享给有需要的人,代码质量勿喷。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ESRI.ArcGIS.Carto;

namespace OpenMxd
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            //很重要的一句话
            ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);
            InitializeComponent();
        }

        private void openMxdToolStripMenuItem_Click(object sender, EventArgs e)
        {
            IMapDocument xjMxdMapDocument = new MapDocumentClass();
            OpenFileDialog xjMxdOpenFileDialog = new OpenFileDialog();
            xjMxdOpenFileDialog.Filter = "地图文档(*.mxd)|*.mxd";

            if (xjMxdOpenFileDialog.ShowDialog() == DialogResult.OK)
            {
                string xjmxdFilePath = xjMxdOpenFileDialog.FileName;
                if (axMapControl1.CheckMxFile(xjmxdFilePath))
                {
                    axMapControl1.Map.ClearLayers();
                    axMapControl1.LoadMxFile(xjmxdFilePath);
                }
            }
            axMapControl1.ActiveView.Refresh();
        }

    }
}

CSDN下载需要的积分太多【系统自动调整,我也没办法】。

分享在百度网盘了【网盘又维护,必须要有提取码】,链接失效可联系[email protected]

链接:https://pan.baidu.com/s/1gKeZrPmkaSZgZP_aPO-Zaw
提取码:ffr8 

窗体+代码【CSDN】:点击打开链接

你可能感兴趣的:(ArcEngine,C#)