桌面GIS应用程序框架的建立.pdf

上传人:文*** 文档编号:89834793 上传时间:2023-05-13 格式:PDF 页数:62 大小:8.52MB
返回 下载 相关 举报
桌面GIS应用程序框架的建立.pdf_第1页
第1页 / 共62页
桌面GIS应用程序框架的建立.pdf_第2页
第2页 / 共62页
点击查看更多>>
资源描述

《桌面GIS应用程序框架的建立.pdf》由会员分享,可在线阅读,更多相关《桌面GIS应用程序框架的建立.pdf(62页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、第一讲:桌面GIS应用程序框架的建立本讲主要是使用 MapControl、PageLayoutControl、ToolbarControk TOCControl 四个控件建立起基本的桌面GIS应用程序框架。最终成果预览如下:1、新建项目启动VS2005,选择 文件I新建I项目”,在项目类型中选择Visual C#,再选择Windows应用程序模板,输入名称“3sdnMap”,点击确定。在解决方案管理器中将“Forml.cs”重命名为“3sdnMap.cs”,在设计视图中,选中窗体,将其属性中 的 T ext改 为 3sdnMap。2、添加控件选择工具箱中的“菜单和工具栏IMenuStrip”,

2、将其拖入窗体。选择工具箱中的ArcGIS Windows FormsM节,将“ToolbarControl”控件拖入窗体,并将其属性中的 Dock设置为Top。选择工具箱中的“菜单和工具栏IStatusStrip”,将其拖入到窗体。选择工具箱中的“容器ISplitContainer”容器拖入窗体,并将其属性中的Dock设置为Fill。将 TabControl控件拖入Panel 1,将 Alignment属性设置为Bottom,Dock属性设置为Fill。点击TabPages属性右边的按钮,弹出TabPage集合编辑器,将 labPagel的 Name设置为tabPageLayer,Text设置

3、为图层,将 tabPage2的 Name设置为tabPageProperty,Text设置为属性。如下所示。选 择“图层”选项卡,拖入TOCControl控件,设置Dock属性为Fill。选择 属性 选项卡,拖入DataGridView控件,设置Dock属性为Fill。拖 入 TabControl控件到Panel2,设置Dock属性为F ilL 并上述类似的方法,将两个选项卡的Name和 Text 分别设置为:(tabPageMap、地 图,(tabPageLayout,制版)。选 择“地图”选项卡,拖入MapControl控件,设置Dock属性为Fill。选 择“制版 选项卡,拖入PageL

4、ayoutControl控件,设置Dock属性为Fill。最后将LicenseControl控件拖入到窗体的任意地方。按 F5编译运行,可以看到刚才布局好的程序界面了。3、控件绑定通过以上步骤添加的控件还只是单独存在,而我们的程序需要各控件间协同工作,因此要进行控件绑定。分别右击 ToolbarControl、TOCControl 控件,将 Buddy 设置为 axMiipControll,如下图所示。这样,工具条和图层控件就与地图控件关联了。4、添加工具此时,工具条中还没有任何工具,添加的方法也很简单。右击ToolbarControl,选 择“属性lltems,点击A d d,选择Comma

5、nds选项卡中的G eneric,双击Open、SaveAs、Redo Undo即可将相应工具添加到工具条。常见的工具有:Map Navigation中的导航工具,Map Inquiry中的查询工具,Feature Selection中的选择工具,你可以根据需要酌情添加工具。5、编译运行按 F 5 即可编译运行程序,至此桌面GIS应用程序框架基本框架已经搭建好了,你可以通过工具条的工具打开地图文档,浏览地图了,效果如开篇所示.第二讲菜单的添加及其实现在上一讲中,我们实现了应用程序基本框架,其中有个小错误,在此先跟大家说明下。在“属性”选项卡中,我们当时添加的是DataGridView控件,这个

6、控件是用来显示数据表的,而专门用于属性的查询和设置的控件是PropertyGrid控件。因此请你删除“属性”选项卡中的DataGridView控件,再把位于“工 具 箱 I 所 有 Windows窗 体 PropertyGrid(如果没有,右击选择“选择项”以添加此控件)控件拖到该选项卡。在这一讲中,主要讲解菜单的添加和实现。1、添加菜单在设计视图中,单击菜单栏,会 出 现“请在此处键入”的提示,单击提示就可以键入菜单名称,如“文件”,再单击“文件”,即可输入其下拉子菜单,如下所示:Tips:每创建一个菜单,请在其属性面板中设置Nam e属性,而且不要为中文,因 此 Nam e值将是此菜单响应

7、函数的函数名的一部分,带中文的函数名,总是不好吧。本讲中,我们将添加新建(New)、打 开(Open)、添加数据(AddData)、保 存(Save)、另存 为(SaveAs)、退 出(Exit)这些菜单,()内为相应的Nam e属性值。Tips:你可以在属性面板中的T ext属性中,把菜单名设置为中英文形式,如“打 开 Open”,带下划线的0表示此项菜单的快捷键是字母0 ,设置方法是在相应字母前加上“&”希 如 打 开&Open 但这种快捷键只在打开此下拉菜单时才有效,即当你单击“文件”菜单弹出下拉菜单时,按下字母0就可以定位到“打开”菜单。还有一种在程序运行时都有效的全局快捷键,可以在属

8、性面板中的“ShortCutKeys M中设置。你还可以在属性面板中的Image属性中设置你喜欢的菜单图标。单 击 Im age那一行右边的按钮,弹出如下菜单。选 择“项目资源文件”,再单击导入就可以选择你的图标了。最终效果如下所示。T3sdnlap二朝u%融,K-新 建New打 开Open添加数据Add Data保 存Save另存为Save As退 出Exitontrol制版SArcGIS IName:i.;注意,在解决方案面板中,选中刚才添加的所有图标,在其属性面板中将生成操作设置为“嵌入的资源”,这一点很重要!2、实现相关菜单首先定义指针(写在public partial class F

9、orml:Form 下面即可):private ESRI.ArcGIS.Controls.IMapControl3 m_mapControl=null;private ESRLArcGIS.Controls.IPageLayoutControl2 m_pageLayoutControl=null;private IMapDocument pMapDocument;若以上指针无效,请添加以下引用:using ESRI.ArcGIS.Carto;using ESRI.ArcGIS.Controls;using ESRI.ArcGIS.esriSystem;using ESRI.ArcGIS.Dis

10、play;using ESRI.ArcGIS.Geometry;using ESRI.ArcGIS.SystemUI;在设计视图中的属性面板中,选 择 Forml,即主窗体,单击事件按钮(闪电形状的那个按钮),打到“Load”事件并双击,添加此事件。在 Forml_Load函数中初始化这些指针:/取得 M叩Control 和 PageLayoutControl 的弓I 用m_mapControl=(IMapControl3)this.axMapControl 1 .Object;m_pageLayoutControl=(IPageLayoutControl2)this.axPageLayout

11、Control 1 .Object;依次双击每个菜单项,添加菜单响应函数。实现代码如下:III/新建地图命令III/private void New_Click(object sender,EventArgs e)/本命令涉及到MapControl和 PageLayoutControl同步问题,将在下一讲中实现)III/打开地图文档M xd命令III/private void Open_Click(object sender,EventArgs e)/本命令涉及到MapControl和 PageLayoutControl同步问题,将在下一讲中实现)III/添加数据命令III/III priva

12、te void AddData_Click(object sender,EventArgs e)(int currentLayerCount=this.axMapControl 1 .LayerCount;ICommand pCommand=new ControlsAddDataCommandClass();pCommand.OnCreate(this.axMapControl 1 .Object);pCommand.OnClick();)/保存地图文档命令/private void Save_Click(object sender,EventArgs e)(/首先确认当前地图文档是否有效if

13、(null!=m_pageLayoutControl.DocumentFilenamem_mapControl.CheckMxFile(m_pageLayoutControl.DocumentFilename)(/创建一个新的地图文档实例IMapDocument mapDoc=new MapDocumentClass();/打开当前地图文档mapDoc.Open(m_pageLayoutControi.DocumentFilename,string.Empty);/用 PageLayout中的文档替换当前文档中的PageLayoul部分mapDoc.ReplaceContents(IMxdCo

14、ntents)m_pageLayoutControl.PageLayout);/保存地图文档mapDoc.Save(mapDoc.UsesRelativePaths,false);mapDoc.Close();)III/另存为地图文档命令/private void SaveAs_Click(object sender,EventArgs e)&/调用另存为命令ICommand command=new ControlsSaveAsDocCommandClass();command.OnCreate(m_controlsSynchronizer.ActiveControl);command.OnC

15、lickO;)/退出程序/private void Exit_Click(object sender,EventArgs e)Application.Exit();)3、编译运行按 F 5 编译运行程序。也许你会发现,菜单命令的实现方式都是类型的。没错,在 A E9.2中,内置了 许 多 常 用 的 Command 和 Tool,如 ControlsAddDataCommandClass、ConlrolsM 叩 ZoomlnToolClass、ControlsMapPanToolClass 等 等,这 些 内 置 对 象 在ESRI.ArcGIS.Controls命名空间中,你可以对象浏览器中

16、查看。而且这些内置对象的调用方式都类似,如下所示:/定义ICommand command=new ControlsSaveAsDocCommandClass();/创建command.OnCreate(m_controlsSynchronizer.ActiveControl);/调用command.OnClick();第三讲 MapControl 与 PageLayoutControl 同步在 ArcMap中,能够很方面地进行Map View和 Layout View两种视图的切换,而且二者之间的数据是同步显示的。关于两种视图同步的实现方法有多种,可以使用ObjectCopy对象进行数据硬拷贝

17、,而比较简单的方法莫过于二者共享一份地图了,这也是最常用的方法。1 新建同步类 ControlsSynchronizer在解决方案面板中右击项目名,选 择“添加I类”,在类别中选择“Visual C#项目项,在模板中选择“类。输入类名“ConlrolsSynchronizer.cs,将以下代码覆盖自动生成的代码:using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.IO;using System.

18、Runtime.InteropServices;using ESRLArcGlS.esriSystem;using ESRLArcGIS.Carto;using ESRI.ArcGIS.Controls;using ESRI.ArcGIS.SystemUI;namespace _sdnMap/This class is used to synchronize a gven PageLayoutControl and a MapControl./When initialized,the user must pass the reference of these control to the cl

19、ass,bind/the control together by calling BindControls which in turn sets a joined Map referenced/by both control;and set all the buddy controls joined between these two controls./When alternating between the MapControl and PageLayoutControl,you should activate the visiblecontrol/and deactivate the o

20、ther by calling ActivateXXX./This calss is limited to a situation where the controls are not simultaneously visible.Ill public class ControlsSynchronizer(#region class membersprivate IMapControl3 m_mapControl=null;private IPageLayoutControl2 m_pageLayoutControl=null;private ITool m_mapActiveTool=nul

21、l;private ITool m_pageLayoutActiveTDol=null;private bool m_IsMapC tri active=true;private ArrayList m_frameworkControls=null;#endregion#region constructor/默认构造函数/public ControlsSynchronizer()(初始化 ArrayListm_frameworkControls=new ArrayList();)/III构造函数III/III public ControlsSynchronizer(IMapControl3 m

22、apControl,IPageLayoutControl2pageLayoutControl):this()(为类成员赋值m_mapControl=mapControl;m_pageLayoutControl=pageLayoutControl;)#endregion#region properties/III取得或设置MapControl/public IM叩Conlrol3 MapControlget return m_mapControl;set m_mapControl=value;)/I I I 取得或设置 PageLayoutControl/public IPageLayoutCo

23、ntrol2 PageLayoutControl(get return m_pageLayoutControl;set m_pageLayoutControl=value;)/取得当前Active View的类型/public string ActiveViewType(get(if(m_IsMapCtrlactive)return MapContror,;elsereturn PageLayoutControlH;)I II III取得当前活动的Control/public object ActiveControl(get(if(m_mapControl=null II m_pageLayo

24、utControl=null)throw new Exception(nControlsSynchronizer:ActiveControl:rnEitherMapControl or PageLayoutControl are not initialized!);if(m_IsMapCtrlactive)return m_mapControl.Object;elsereturn m_pageLayoutControLObject;)#endregion#region Methods/I I I 激活 MapControl 并解除 the PagleLayoutControl/public v

25、oid ActivateMapO(tryif(m_pageLayoutControl=null II m_mapControl=null)throw new Exception(ControlsSynchronizer:ActivateMap:rnEither MapControlor PageLayoutControl are not initialized!*);缓存当前 PageLayout 的 CurrentToolif(m_pageLayoutControl.CurrentTool!=null)m_pageLayoutActiveTool=m_pageLayoutControl.Cu

26、rrentTool;解除 PagleLayoutm_pageLayoutControl.ActiveView.Deactivate();激活 MapControlm_mapControl.Active View.Activate(m_mapControl.hWnd);将之前MapControl最后使用的to o l,作为活动的to o l,赋 给 M叩Control的CurrentToolif(m_mapActiveTool!=null)m_mapControl.CurrentTool=m_mapActiveTool;msM 叩 Ctrlactive=true;为每一个的 framework

27、controls,设置 Buddy control 为 MapControlthis.SetBuddies(m_mapControl.Object);)catch(Exception ex)(throw new Exception(string.Format(ControlsSynchronizer:ActivateMap:rn0”,ex.Message);)III/激活 PagleLayoutControl 并减活 MapCotrol/public void ActivatePageLayout()(try(if(m_pageLayoutControl=null II m_mapContro

28、l=null)throw new Exception(ControlsSynchronizer:ActivatePageLayout:rnEitherMapControl or PageLayoutControl are not initialized!*);缓存当前 M叩Control 的 CurrentToolif(m_mapControl.CurrentTool!=null)m_mapActiveTool=m_mapControl.CurrentTool;解除 MapControlm_mapControl.Active View.Deactivate();激活 PageLayoutCon

29、trolm_pageLayoutControl.ActiveView.Activate(m_pageLayoutControl.hWnd);将 之 前 PageLayoutControl最 后 使 用 的 tool,作 为 活 动 的 tool,赋给PageLayoutControl 的 CurrentToolif(m_pageLayoutActiveTool!=null)m_pageLayoutControl.CurrentTool=m_pageLayoutActiveTool;mJsMapCtrlactive=false;为每一个的 framework controls,iicfi Bud

30、dy control 为 PageLayoutControlthis.SetBuddies(m_pageLayoutControl.Object);)catch(Exception ex)(thrownewExceptionCstring.FormatCControlsSynchronizer:ActivatePageLayout:rn0,ex.Message);)III III 给予一个地图,置换 PageLayoutControl 和 M叩Control 的 focus map/public void ReplaceMap(IMap newM叩)(if(newMap=null)throw

31、new Exception(nControlsSynchronizer:ReplaceMap:rnNew map forreplacement is not initialized!);if(m_pageLayoutControl=null II m_mapControl=null)throw new Exception(nControlsSynchronizer:ReplaceMap:rnEither MapControl orPageLayoutControl are not initialized!);/create a new instance of IMaps collection

32、which is needed by the PageLayout创建一个PageLayout需要用到的,新的IMaps collection的实例IMaps maps=new Maps();/add the new map to the Maps collection把新的地图加到Maps collection里头去maps.Add(newMap);bool blsMapActive=mJsMapCtrlactive;/call replace map on the PageLayout in order to replace the focus map/we must call Activ

33、atePageLayout,since it is the control we call ReplaceMaps调用 PageLayout 的 replace map 来置换 focus map/我 们必须调 用 ActivatePageLayout,因为它是那个我们可以调用ReplaceMaps”的Controlthis.ActivatePageLayout();m_pageLayoutControl.PageLayout.ReplaceMaps(maps);/assign the new map to the MapControl把新的地图赋给MapControlm_mapControl

34、.Map=newMap;/reset the active tools重设 active toolsrn_pageLayoutActiveTool=null;m_mapActiveTool=null;/make sure that the last active control is activated确认之前活动的control被激活if(blsMapActive)this.ActivateMap();m_mapControl.Active View.Refresh();elsethis.ActivatePageLayout();m_pageLayoutControl.Active View

35、.Refresh();)III/bind the MapControl and PageLayoutControl together by assigning a new joint focus mapIII指定共同的Map来把M叩Control和 PageLayoutControl绑在一起/III/true if the MapControl supposed to be activated first,如果MapControl 被首先激活,则为 truepublic void BindControls(IMapControl3 mapControl,IPageLayoutControl2

36、pageLayoutControl,bool activateMapFirst)(if(mapControl=null II pageLayoutControl=null)throw new Exception(MControlsSynchronizer:BindControls:rnEither MapControl orPageLayoutControl are not initialized!);m_mapControl=MapControl;m_pageLayoutControl=pageLayoutControl;this.BindControls(activateMapFirst)

37、;)/bind the MapControl and PageLayoutControl together by assigning a new joint focus map/指定共同的 Map 来把 MapControl 和 PageLayoutControl 绑在一起/III true if the MapControl supposed to be activated first,如果MapControl 被首先激活,则为 truepublic void BindControls(bool activateMapFirst)if(m_pageLayoutControl=null II

38、m_mapControl=null)throw new Exception(ControlsSynchronizer:BindControls:rnEither MapControl orPageLayoutControl are not initialized!);/create a new instance of IMap创造IMap的一个实例IMap newMap=new MapClass();newMap.Name 二M叩”;/create a new instance of IMaps collection which is needed by the PageLayout创造一个新

39、的IMaps collection的实例,这是PageLayout所需要的IMaps maps=new Maps();/add the new Map instance to the Maps collection把新的M叩 实例赋给Maps collectionmaps.Add(newMap);/call replace map on the PageLayout in order to replace the focus map调用 PageLayout 的 replace map 来置换 focus maprn_pageLayoutControl.PageLayout.ReplaceMa

40、ps(maps);/assign the new map to the MapControl把新的map赋给MapControlm_mapControl.Map=newMap;/reset the active tools重设 active toolsm_pageLayoutActiveTool=null;m_mapActiveTool=null;/make sure that the last active control is activated确定最后活动的control被激活if(activateMapFirst)this.ActivateMapO;elsethis.ActivateP

41、ageLayout();)III/by passing the applications toolbars and TOC to the synchronization class,it saves you the/management of the buddy control each time the active control changes.This method ads theframework/control to an array;once the active control changes,the class iterates through the array and/c

42、alles SetBuddyControl on each of the stored framework control.Ill/public void AddFrameworkControl(object control)(if(control=null)throw new Exception(nControlsSynchronizer:AddFrameworkControl:rnAddedcontrol is not initialized!);m_frameworkControls.Add(control);)/Remove a framework control from the m

43、anaged list of controls/III public void RemoveFrameworkControl(object control)(if(control=null)throw new Exception(,ControlsSynchi*onizer:RemoveFrameworkControl:rnControlto be removed is not initialized!1);m_frameworkControls.Remove(control);)/Remove a framework control from the managed list of cont

44、rols by specifying its index in thelist/public void RemoveFrameworkControlAt(int index)(if(m_frameworkControls.Count index)throw new Exception(ControlsSynchronizer:RemoveFrameworkControlAt:rnIndexis out of range!);m_frameworkControls.RemoveAt(index);)/when the active control changes,the class iterat

45、es through the array of the framework controls/and calles SetBuddyControl on each of the controls./the active controlprivate void SetBuddies(object buddy)(try(if(buddy=null)throw new Exception(HControlsSynchronizer:SetBuddies:rnTarget BuddyControl is not initialized!u);foreach(object obj in m_framew

46、orkControls)(if(obj is IToolbarControl)(IToolbarControl)obj).SetBuddyControl(buddy);)else if(obj is ITOCControl)(ITOCControl)obj).SetBuddyControl(buddy);)catch(Exception ex)(throw new Exception(string.Format(ControlsSynchronizer:SetBuddies:rn 0,ex.Message);)#endregion)2、新建M叩s 类在同步类中,要用到M aps类,川于管理地图

47、对象。与新建同步类ControlsSynchronizer类似,我们新建一 Maps类,其所有代码如下所示:using System;using System.Collections;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using ESRI.ArcGIS.Carto;namespace _sdnMap(Guid(nf27d8789-fbbc-480I-be78-0e3cd8fff9d5n)ClassInterface(ClassInterfaceType.

48、None)ProgId(,LsdnMap.Mapsn)public class Maps:IMaps,IDisposable(/class member-using internally an ArrayList to manage the Maps collectionprivate ArrayList m_array=null;#region class constructorpublic M叩s()(m_array=new ArrayList();)#endregion#region IDisposable Members/Dispose the collection/public vo

49、id Dispose()(if(m_array!=null)(m_array.Clear();m_array=null;)#endregion#region IMaps Members/Remove the Map at the given index/III public void RemoveAt(int Index)(if(Index m_array.Count II Index 0)throw new Exception(Maps:RemoveAt:rnIndex is out of range!u);m_array.RemoveAt(Index);)/III Reset the Ma

50、ps array/public void Reset()m_array.Clear();/III Get the number of Maps in the collection/public int Count(get(return m_array.Count;)/Return the Map at the given index/public IMap get_Item(int Index)(if(Index m_array.Count II Index 0)throw new Exception(nMaps:get_Item:rnIndex is out of range!);retur

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 教案示例

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁