資源簡介
ArcEngine地理信息系統開發入門到精通第二版 光盤源代碼
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
namespace?Sample
{
????public?partial?class?Form1?:?Form
????{
????????public?Form1()
????????{
????????????ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);
????????????InitializeComponent();
????????????string?path?=?@“D:\World\“;
????????????string?fileName?=?@“World.mxd“;
????????????//加載圖層文件
????????????axMapControl1.LoadMxFile(path+fileName);
????????????//設置MapControl顯示范圍到數據的全局范圍
????????????axMapControl1.Extent?=?axMapControl1.FullExtent;
????????????
????????}
????????private?void?axToolbarControl1_onmousedown(object?sender?ESRI.ArcGIS.Controls.IToolbarControlEvents_onmousedownEvent?e)
????????{
????????}
????}
}
評論
共有 條評論