版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
ArcGISEngine+C#實例開發(fā)教程
第一講:桌面GIS應用程序框架的建立
本講主要是使用MapControLPageLayoutControl>ToolbarControKTOCControl四個控件建立
起基本的桌面GIS應用程序框架。最終成果預覽如下:
1、新建項目
啟動VS2005,選擇“文件|新建|項目”,在項目類型中選擇VisualC#,再選擇Windows應用
程序模板,輸入名稱“3sdnM叩”,點擊確定。
新建項目田因
在解決方案管理器中將“Forml.cs”重命名為“3sdnMap.cs”,在設計視圖中,選中窗體,
將其屬性中的“Text”改為“3sdnMap”。
2、添加控件
選擇工具箱中的“菜單和工具欄|MenuStrip”,將其拖入窗體。
選擇工具箱中的"ArcGISWindowsForms”節(jié),將"Toolbarcontrol”控件拖入窗體,并將其
屬性中的Dock設置為Top。
選擇工具箱中的“菜單和工具欄|Statusstrip”,將其拖入到窗體。
選擇工具箱中的“容器|Splitcontainer”容器拖入窗體,并將其屬性中的Dock設置為Fill。
將TabControl控件拖入Panell,將Alignment屬性設置為Bottom,Dock屬性設置為Fill。點
擊TabPages屬性右邊的按鈕,彈出TabPage集合編輯器,將tabPagel的Name設置為
tabPageLayer,Text設置為圖層,將tabPage2的Name設置為tabPageProperty,Text設置為
屬性。如下所示。
選擇“圖層”選項卡,拖入TOCControl控件,設置Dock屬性為Fill。
選擇"屬性"選項卡,拖入DataGridView控件,設置Dock屬性為Fill。
拖入TabControl控件到Panel2,設置Dock屬性為Fill。并上述類似的方法,將兩個選項卡的
Name和Text分別設置為:(tabPageMap、地圖),(tabPageLayout,制版)。
選擇“地圖”選項卡,拖入MapControl控件,設置Dock屬性為Fill。
選擇“制版”選項卡,拖入PageLayoutControl控件,設置Dock屬性為Fillo
最后將Licensecontrol控件拖入到窗體的任意地方。
按F5編譯運行,可以看到剛才布局好的程序界面了。
3、控件綁定
通過以上步驟添加的控件還只是單獨存在,而我們的程序需要各控件間協(xié)同工作,因此要進
行控件綁定。
分別右擊Toolbarcontrol、TOCControl控件,將Buddy設置為axM叩Control!.,如下圖所示。
這樣,工具條和圖層控件就與地圖捽件關聯(lián)了。
4、添加工具
此時,工具條中還沒有任何工具,添加的方法也很簡單。右擊Toolbarcontrol,選擇“屬性
|Items點擊Add,選擇Commands選項卡中的Generic,雙擊Open、SaveAs、Redo、Undo
即可將相應工具添加到工具條。
常見的工具有:
MapNavigation中的導航工具,MapInquiry中的查詢工具,F(xiàn)eatureSelection中的選擇工具,
你可以根據(jù)需要酌情添加工具。
5、編譯運行
按F5即可編譯運行程序,至此桌面GIS應用程序框架基本框架已經(jīng)搭建好了,你可以通過
工具條的工具打開地圖文檔,瀏覽地圖了,效果如開篇所示.
第二講菜單的添加及其實現(xiàn)
在上一講中,我們實現(xiàn)了應用程序基本框架,其中有個小錯誤,在此先跟大家說明下。在“屬
性”選項卡中,我們當時添加的是DataGridView控件,這個控件是用來顯示數(shù)據(jù)表的,而
專門用于屬性的查詢和設置的控件是PropertyGrid控件。因此請你刪除“屬性”選項卡中
的DataGridView控件,再把位于“工具箱|所有Windows窗體|PropertyGrid”(如果
沒有,右擊選擇“選擇項”以添加此控件)控件拖到該選項卡。
在這一講中,主要講解菜單的添加和實現(xiàn)。
1、添加菜單
在設計視圖中,單擊菜單欄,會出現(xiàn)“請在此處鍵入”的提示,單擊提示就可以鍵入菜單名
稱,如“文件”,再單擊“文件”,即可輸入其下拉子菜單,如下所示:
Tips:
每創(chuàng)建一個菜單,請在其屬性面板中設置Name屬性,而且不要為中文,因此Name值將
是此菜單響應函數(shù)的函數(shù)名的一部分,帶中文的函數(shù)名,總是不好吧。
本講中,我們將添加新建(New)、打開(Open)、添加數(shù)據(jù)(AddData)、保存(Save)、
另存為(SaveAs)、退出(Exit)這些菜單,()內(nèi)為相應的Name屬性值。
Tips:
你可以在屬性面板中的Text屬性中,把菜單名設置為中英文形式,如“打開Open”,帶
下劃線的0表示此項菜單的快捷鍵是字母。,設置方法是在相應字母前加上“&”字符,
如“打開&Open”。但這種快捷鍵只在打開此下拉菜單時才有效,即當你單擊“文件”菜
單彈出下拉菜單時,按下字母。就可以定位到“打開”菜單。
還有一種在程序運行時都有效的全局快捷鍵,可以在屬性面板中的“ShortCutKeys”中設
置。
你還可以在屬性面板中的Image屬性中設置你喜歡的菜單圖標。單擊Image那一行右邊的
按鈕,彈出如下菜單。選擇“項目資源文件”,再單擊導入就可以選擇你的圖標了。
最終效果如下所示。
J
新建New
Jontrol
打開Openss~制版
胃
?添加數(shù)據(jù)AddData
?口ArcGISI
-保存Save
-%SName:;
-另存為SaveAs
觸
-退出Exit
-
-匚二二二二二3
注意,在解決方案面板中,選中剛才添加的所有圖標,在其屬性面板中將生成操作設置為“嵌
入的資源”,這一點很重要!
2、實現(xiàn)相關菜單
首先定義指針(寫在publicpartialclassForml:Form下面即可):
privateESRI.ArcGIS.Controls.lMapControl3m_mapControl=null;
privateESRI.ArcGIS.Controls.lPageLayoutControl2m_pageLayoutControl=null;
privateIMapDocumentpMapDocument;
若以上指針無效,請?zhí)砑右韵乱茫?/p>
usingESRI.ArcGIS.Carto;
usingESRI.ArcGIS.Controls;
usingESRI.ArcGIS.esriSystem;
usingESRI.ArcGIS.Display;
usingESRI.ArcGIS.Geometry;
usingESRI.ArcGIS.Systemlll;
在設計視圖中的屬性面板中,選擇Forml,即主窗體,單擊事件按鈕(閃電形狀的那個按
鈕),打到“Load”事件并雙擊,添加此事件。
在Forml_Load函數(shù)中初始化這些指針:
//取得MapControl和PageLayoutControl的引用
m_mapControl=(IMapControl3)this.axMapControll.Object;
m_pageLayoutControl=(IPageLayoutControl2)this.axPageLayoutControll.Object;
依次雙擊每個菜單項,添加菜單響應函數(shù)。實現(xiàn)代碼如卜?:
III<summary>
III新建地圖命令
III</summary>
///<paramname="sender,,x/param>
III<paramname="e"></param>
privatevoidNew_Click(objectsender,EventArgse)
(
//本命令涉及到MapControl和PageLayoutControl同步問題,將在下?講中實現(xiàn)
)
III<summary>
III打開地圖文檔Mxd命令
III</summary>
///<paramname="sender"x/param>
///<paramname="e"></param>
privatevoidOpen_Click(objectsender;EventArgse)
(
//本命令涉及到MapControl和PageLayoutControl同步問題,將在下一講中實現(xiàn)
)
III<summary>
III添加數(shù)據(jù)命令
III</summary>
III<paramname="sender"x/param>
III<paramname=He"x/param>
privatevoidAddData_Click(objectsender,EventArgse)
intcurrentLayerCount=this.axMapControll.LayerCount;
ICommandpCommand=newControlsAddDataCommandClass();
pCommand.OnCreate(this.axMapControll.Object);
pCommand.OnClick();
}
III<summary>
III保存地圖文檔命令
///</summary>
III<paramname="sender"x/param>
///<paramname="e"x/param>
privatevoidSave_Click(objectsender,EventArgse)
(
//首先確認當前地圖文檔是否有效
if(null!=m_pageLayoutControl.DocumentFilename&&
m_mapControl.CheckMxFile(m_pageLayoutControl.DocumentFilename))
(
//創(chuàng)建一個新的地圖文檔實例
IMapDocumentmapDoc=newMapDocumentClass();
//打開當前地圖文檔
mapDoc.Open(m_pageLayoutControl.DocumentFilename/string.Empty);
//用PageLayout中的文檔替換當前文檔中的PageLayout部分
mapDoc.ReplaceContents((IMxdContents)m_pageLayoutControl.PageLayout);
//保存地圖文檔
mapDoc.SavefmapDoc.UsesRelativePaths,false);
mapDoc.Close();
)
)
///<summary>
///另存為地圖文檔命令
///</summary>
///<paramname=,,sender,,x/param>
III<paramname="e"x/param>
privatevoidSaveAs_Click(objectsendeeEventArgse)
{
//調(diào)用另存為命令
ICommandcommand=newControlsSaveAsDocCommandClass();
command.OnCreate(m_controlsSynchronizer.ActiveControl);
command.OnClick();
)
///<summary>
III退出程序
///</summary>
III<paramname="sender"></param>
III<paramname=,,e"x/param>
privatevoidExit_Click(objectsender,EventArgse)
Application.Exit();
3、編譯運行
按F5編譯運行程序。也許你會發(fā)現(xiàn),菜單命令的實現(xiàn)方式都是類型的。沒錯,在AE9.2中,
內(nèi)置了許多常用的Command和Tool,如ControlsAddDataCommandClass、
ControlsMapZoomlnToolClass、ControlsMapPanToolClass等等,這些內(nèi)置對象在
ESRI.ArcGIS.Controls命名空間中,你可以對象瀏覽器中查看。而且這些內(nèi)置對象的調(diào)用方式
都類似,如下所示:
//定義
ICommandcommand=newControlsSaveAsDocCommandClass();
//創(chuàng)建
command.OnCreate(m_controlsSynchronizer.ActiveControl);
//調(diào)用
command.OnClick();
第三講M叩Control與PageLayoutControl同步
在ArcMap中,能夠很方面地進行MapView和LayoutView兩種視圖的切換,而且二者之間
的數(shù)據(jù)是同步顯示的。
關于兩種視圖同步的實現(xiàn)方法有多種,可以使用Objectcopy對象進行數(shù)據(jù)硬拷貝,而比較
簡單的方法莫過于二者共享一份地圖了,這也是最常用的方法。
1、新建同步類ControlsSynchronizer
在解決方案面板中右擊項目名,選擇“添加|類”,在類別中選擇“VisualC#項目項",在模
板中選擇“類”,輸入類名“ControlsSynchronizer.cs",將以下代碼覆蓋自動生成的代碼:
usingSystem;
usingSystem.Drawing;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Windows.Forms;
usingSystem.IO;
usingSystem.Runtime.InteropServices;
usingESRI.ArcGIS.esriSystem;
usingESRI.ArcGIS.Carto;
usingESRI.ArcGIS.Controls;
usingESRI.ArcGIS.SystemUI;
namespace_sdnMap
(
///<summary>
IIIThisclassisusedtosynchronizeagvenPageLayoutControlandaMapControl.
IllWheninitialized,theusermustpassthereferenceofthesecontroltotheclass,bind
IIIthecontroltogetherbycalling'BindControls*whichinturnsetsajoinedMapreferenced
///bybothcontrol;andsetallthebuddycontrolsjoinedbetweenthesetwocontrols.
IllWhenalternatingbetweentheMapControlandPageLayoutControl,youshouldactivate
thevisiblecontrol
///anddeactivatetheotherbycallingActivateXXX.
///Thiscalssislimitedtoasituationwherethecontrolsarenotsimultaneouslyvisible.
///</summary>
publicclassControlsSynchronizer
(
#regionclassmembers
privateIMapControl3m_mapControl=null;
privateIPageLayoutControl2m_pageLayoutControl=null;
privateIToolm_mapActiveTool=null;
privateIToolm_pageLayoutActiveTool=null;
privateboolmJsMapCtrlactive=true;
privateArrayListm_frameworkControls=null;
#endregion
#regionconstructor
III<summary>
III默認構造函數(shù)
III</summary>
publicControlsSynchronizer()
〃初始化ArrayList
m_frameworkControls=newArrayList();
)
Ill<summary>
III構造函數(shù)
III</summary>
///<paramname=',mapControl"></param>
III<paramname="pageLayoutControl"></param>
publicControlsSynchronizer(IMapControl3mapControl,IPageLayoutControl2
pageLayoutControl)
:this()
(
〃為類成員賦值
m_mapControl=mapControl;
m_pageLayoutControI=pageLayoutControl;
)
#endregion
#regionproperties
III<summary>
III取得或設置MapControl
III</summary>
publicIMapControl3MapControl
(
get{returnm_mapControl;}
set{m_mapControl=value;}
///<summary>
///取得或設置PageLayoutControl
///</summary>
publicIPageLayoutControl2PageLayoutControl
(
get{returnm_pageLayoutControl;}
set{m_pageLayoutControl=value;}
III<summary>
III取得當前ActiveView的類型
///</summary>
publicstringActiveViewType
get
if(mJsMapCtrlactive)
return"MapControl*';
else
return"PageLayoutControl";
)
)
III<summary>
III取得當前活動的Control
III</summary>
publicobjectActiveControl
(
get
(
if(m_mapControl==null11m_pageLayoutControl==null)
thrownewException("ControlsSynchronizer::ActiveControl:\r\nEither
MapControlorPageLayoutControlarenotinitialized!");
if(mJsMapCtrlactive)
returnm_mapControl.Object;
else
returnm_pageLayoutControl.Object;
)
)
#endregion
#regionMethods
III<summary>
III激活MapControl并解除thePagleLayoutControl
III</summary>
publicvoidActivateMap()
(
try
(
if(m_pageLayoutControl==null11m_mapControl==null)
thrownewException(uControlsSynchronizer::ActivateMap:\r\nEither
MapControlorPageLayoutControlarenotinitialized!");
〃緩存當前PageLayout的CurrentTool
if(m_pageLayoutControl.CurrentTool!=null)m_pageLayoutActiveIbol=
m_pageLayoutControl.CurrentTool;
〃解除PagleLayout
m_pageLayoutControl.ActiveView.Deactivate();
〃激活MapControl
m_mapControl.ActiveView.Activate(m_mapControl.hWnd);
〃將之前M叩Control最后使用的tool,作為活動的tool,賦給MapControl
的CurrentTool
if(m_mapActiveTool!=null)m_mapControl.CurrentTool=m_mapActiveTool;
mJsMapCtrlactive=true;
〃為每?個的frameworkcontrols,設置Buddycontrol為MapControl
this.SetBuddies(m_mapControl.Object);
)
catch(Exceptionex)
(
thrownew
Exception(string.Format("ControlsSynchronizer::ActivateMap:\r\n{0}",ex.Message));
)
)
///<summary>
///激活PagleLayoutControl并減活MapCotrol
///</summary>
publicvoidActivatePageLayout()
(
try
{
if(m_pageLayoutControl==null11m_mapControl==null)
thrownew
Exception("ControlsSynchronizer::ActivatePageLayout:\r\nEitherMapControlor
PageLayoutControlarenotinitialized!");
〃緩存當前MapControl的CurrentTool
if(m_mapControl.CurrentTool!=null)m_mapActiveTool=
m_mapControl.CurrentTool;
〃解除MapControl
m_mapControl.ActiveView.Deactivate();
〃激活PageLayoutControI
m_pageLayoutControl.ActiveView.Activate(m_pageLayoutControl.hWnd);
〃將之前PageLayoutControl最后使用的tool,作為活動的tool,賦給
PageLayoutControl的CurrentTool
if(m_pageLayoutActiveTool!=null)m_pageLayoutControl.CurrentTool=
m_pageLayoutActiveTool;
m_lsMapCtrlactive=false;
〃為每一個的frameworkcontrols,設置Buddycontrol為PageLayoutControl
this.SetBuddies(m_pageLayoutControl.Object);
)
catch(Exceptionex)
(
thrownew
Exceptiontstring.FormatC'ControlsSynchronizer^ActivatePageLayoutArXnfO}",ex.Message));
)
}
///<summary>
III給予一個地圖,置換PageLayoutControl和MapControl的focusmap
///</summary>
///<paramname="newMap"></param>
publicvoidReplaceMap(IMapnewMap)
(
if(newMap==null)
thrownewException("ControlsSynchronizer::ReplaceMap:\r\nNewmapfor
replacementisnotinitialized!");
if(m_pageLayoutControl==null11m_mapControl==null)
thrownewException("ControlsSynchronizer::Replacel\/lap:\r\nEither
MapControlorPageLayoutControlarenotinitialized!");
//createanewinstanceofIMapscollectionwhichisneededbythePageLayout
〃創(chuàng)建?個PageLayout需要用到的,新的IMapscollection的實例
IMapsmaps=newMaps();
//addthenewmaptotheMapscollection
〃把新的地圖加到Mapscollection里頭去
maps.Add(newMap);
boolblsMapActive=mJsMapCtrlactive;
//callreplacemaponthePageLayoutinordertoreplacethefocusmap
//wemustcallActivatePageLayout,sinceitisthecontrolwecall'ReplaceMaps'
〃調(diào)用PageLayout的replacemap來置換focusmap
〃我們必須調(diào)用ActivatePageLayout,因為它是那個我們可以調(diào)用“ReplaceMaps”
的Control
this.ActivatePageLayout();
m_pageLayoutControl.PageLayout.ReplaceMaps(maps);
//assignthenewmaptotheMapControl
〃把新的地圖賦給MapControl
m_mapControl.Map=newMap;
//resettheactivetools
〃重設activetools
m_pageLayoutActiveTool=null;
m_mapActiveTool=null;
//makesurethatthelastactivecontrolisactivated
〃確認之前活動的control被激活
if(blsMapActive)
(
this.ActivateMap();
m_mapControl.ActiveView.Refresh();
)
else
(
this.ActivatePageLayout();
m_pageLayoutControl.ActiveView.Refresh();
)
)
III<summary>
///bindtheMapControlandPageLayoutControltogetherbyassigninganewjointfocus
map
III指定共同的Map來把MapControl和PageLayoutControl綁在一起
III</summary>
///<paramname=HmapContror,x/param>
III<paramname="pageLayoutControl"></param>
///<paramname=HactivateMapFirst">trueiftheMapControlsupposedtobeactivated
first,如果MapControl被首先激活,則為true</param>
publicvoidBindControls(IMapControl3mapControl,IPageLayoutControl2
PageLayoutControl,boolactivateMapFirst)
(
if(mapControl==null11PageLayoutControl==null)
thrownewException("ControlsSynchronizer::BindControls:\r\nEither
MapControlorPageLayoutControlarenotinitialized!");
m_mapControl=MapControl;
m_pageLayoutControl=PageLayoutControl;
this.BindControls(activateMapFirst);
)
Ill<summary>
IIIbindtheMapControlandPageLayoutControltogetherbyassigninganewjointfocus
map
III指定共同的Map來把MapControl和PageLayoutControl綁在一起
III</summary>
///<paramname="activateMapFirst">trueiftheMapControlsupposedtobeactivated
first,如果MapControl被首先激活,則為true</param>
publicvoidBindControls(boolactivateMapFirst)
(
if(m_pageLayoutControl==null11m_mapControl==null)
thrownewException("ControlsSynchronizer::BindControls:\r\nEither
MapControlorPageLayoutControlarenotinitialized!");
//createanewinstanceofIMap
〃創(chuàng)造IMap的一個實例
IMapnewMap=newMapClass();
newMap.Name="Map";
//createanewinstanceofIMapscollectionwhichisneededbythePageLayout
〃創(chuàng)造一個新的IM叩scollection的實例,這是PageLayout所需要的
IMapsmaps=newMaps();
//addthenewMapinstancetotheMapscollection
〃把新的Map實例賦給Mapscollection
maps.Add(newMap);
//callreplacemaponthePageLayoutinordertoreplacethefocusmap
〃調(diào)用PageLayout的replacemap來置換focusmap
m_pageLayoutControl.PageLayout.ReplaceMaps(maps);
//assignthenewmaptotheMapControl
〃把新的map賦給MapControl
m_mapControl.Map=newMap;
//resettheactivetools
〃重設activetools
m_pageLayoutActiveTool=null;
m_mapActiveTool=null;
//makesurethatthelastactivecontrolisactivated
〃確定最后活動的control被激活
if(activateMapFirst)
this.ActivateMap();
else
this.ActivatePageLayout();
}
Ill<summary>
///bypassingtheapplication'stoolbarsandTOCtothesynchronizationclass,itsaves
youthe
///managementofthebuddycontroleachtimetheactivecontrolchanges.This
methodadstheframework
///controltoanarray;oncetheactivecontrolchanges,theclassiteratesthroughthe
arrayand
///callesSetBuddyControloneachofthestoredframeworkcontrol.
///</summary>
III<paramname="contror'></param>
publicvoidAddFrameworkControl(objectcontrol)
(
if(control==null)
thrownew
Exception("ControlsSynchronizer::AddFrameworkControl:\r\nAddedcontrolisnotinitialized!");
m_frameworkControls.Add(control);
)
III<summary>
///Removeaframeworkcontrolfromthemanagedlistofcontrols
III</summary>
///<paramname="control"></param>
publicvoidRemoveFrameworkControl(objectcontrol)
(
if(control==null)
thrownew
Exception("ControlsSynchronizer::RemoveFrameworkControl:\r\nControltoberemovedisnot
initialized!");
m_frameworkControls.Remove(control);
)
///<summary>
IIIRemoveaframeworkcontrolfromthemanagedlistofcontrolsbyspecifyingits
indexinthelist
III</summary>
///<paramname=",index"></param>
publicvoidRemoveFrameworkControlAt(intindex)
{
if(m_frameworkControls.Count<index)
thrownew
Exception("ControlsSynchronizer::RemoveFrameworkControlAt:\r\nlndexisoutofrange!");
m_frameworkControls.RemoveAt(index);
)
III<summary>
IIIwhentheactivecontrolchanges,theclassiteratesthroughthearrayofthe
frameworkcontrols
///andcallesSetBuddyControloneachofthecontrols.
///</summary>
III<paramname="buddy">theactivecontrol</param>
privatevoidSetBuddies(objectbuddy)
(
try
(
if(buddy==null)
thrownewException("ControlsSynchronizer::SetBuddies:\r\nTarget
BuddyControlisnotinitialized!");
foreach(objectobjinm_frameworkControls)
(
if(objisIToolbarcontrol)
(
((IToolbarControl)obj).SetBuddyControl(buddy);
}
elseif(objisITOCControl)
(
((ITOCControl)obj).SetBuddyControl(buddy);
}
)
)
catch(Exceptionex)
(
thrownew
Exception(string.Format("ControlsSynchronizer::SetBuddies:\r\n{0}"/ex.Message));
)
}
#endregion
}
2、新建Maps類
在同步類中,要用到Maps類,用于管理地圖對象。與新建同步類ControlsSynchronizer類似,
我們新建一Maps類,其所有代碼如下所示:
usingSystem;
usingSystem.Collections;
usingSystem.Collections.Generic;
usingSystem.Text;
usingSystem.Runtime.InteropServices;
usingESRI.ArcGIS.Carto;
namespace_sdnMap
(
[Guid("f27d8789-fbbc-4801-be78-0e3cd8fff9d5")]
[Classlnterface(ClasslnterfaceType.None)]
[Progld("_sdnMap.Maps")]
publicclassMaps:IMaps,IDisposable
(
//classmember-usinginternallyanArrayListtomanagetheMapscollection
privateArrayListm_array=null;
#regionclassconstructor
publicMaps()
(
m_array=newArrayList();
)
#endregion
#regionIDisposableMembers
///<summary>
///Disposethecollection
III</summary>
publicvoidDispose()
(
if(m_array!=null)
(
m_array.Clear();
m_array=null;
)
)
#endregion
#regionIMapsMembers
Ill<summary>
IIIRemovetheMapatthegivenindex
///</summary>
///<paramname="lndex"x/param>
publicvoidRemoveAt(intIndex)
(
if(Index>m_array.Count11Index<0)
thrownewException("Maps::RemoveAt:\r\nlndexisoutofrange!'*);
m_array.RemoveAt(lndex);
)
///<summary>
IIIResettheMapsarray
III</summary>
publicvoidReset()
(
m_array.Clear();
)
III<summary>
IIIGetthenumberofMapsinthecollection
///</summary>
publicintCount
(
get
(
returnm_array.Count;
)
)
III<summary>
IIIReturntheMapatthegivenindex
III</summary>
III<paramname="lndex"x/param>
///<returnsx/returns>
publicIMapget_ltem(intIndex)
(
if(Index>m_array.Count11Index<0)
thrownewException("Maps::get_ltem:\r\nlndexisoutofrange!");
returnm_array[lndex]asIMap;
}
Ill<summary>
IIIRemovetheinstanceofthegivenMap
///</summary>
///<paramname=HMap"></param>
publicvoidRemove(IMapMap)
(
m_array.Remove(Map);
)
III<summary>
///CreateanewMap,addittothecollectionandreturnittothecaller
///</summary>
///<returns></returns>
publicIMapCreate()
(
IMapnewMap=newMapClass();
m_array.Add(newMap);
returnnewMap;
)
III<summary>
///AddthegivenMaptothecollection
III</summary>
III<paramname="Map,,x/param>
publicvoidAdd(IMapMap)
(
if(Map==null)
thrownewException("Maps::Add:\r\nNewMapismotinitialized!");
m_array.Add(Map);
}
#endregion
}
3、新建打開文檔類OpenNewM叩Document
由于從工具欄自帶的打開按鈕打開地圖文檔的時候,不會自動進行兩種視圖之間的同步,所
以我們要自己派生一個OpenNewMapDocument類,用于打開地圖文檔。
右擊項目名,選擇“添加|類”,再選擇ArcGIS類別中的BaseCommand模板,輸入類名為
"OpenNewMapDocument.cs
首先添加引用:
usingSystem.Windows.Forms;
usingESRI.ArcGIS.Carto;
再添加如下成員變量:
privateControlsSynchronizerm_controlsSynchronizer=null;
修改默認的構造函數(shù)如下所示:
〃添加參數(shù)
publicOpenNewMapDocument(ControlsSynchronizerControlsSynchronizer)
(
//
//TODO:Definevaluesforthepublicproperties
//
〃設定相關屬性值
base.m_category="Generic";//localizabletext
base.m_caption="Open";//localizabletext
base.m_message="ThisshouldworkinArcMap/MapControl/PageLayoutControl";
//localizabletext
base.m_toolTip="Open";//localizabletext
base.m_name="Generic_Open";//uniqueid,non-localizable(e.g.
"MyCategory_MyCommand")
〃初始化m_controlsSynchronizer
m_controlsSynchronizer=ControlsSynchronizer;
try
(
//
//TODO:changebitmapnameifnecessary
//
stringbitmapResourceName=GetType().Name+".bmp";
base.m_bitmap=newBitmap(GetType()zbitmapResourceName);
catch(Exceptionex)
System.Diagnostics.Trace.WriteLine(ex.Message,"InvalidBitmap");
)
)
再在OnClick函數(shù)中添加如下代碼:
publicoverridevoidOnClick()
(
〃TODO:AddOpenNewMapDocument.OnClickimplementation
OpenFileDialogdig=newOpenFileDialogO;
dlg.Filter="MapDocuments(*.mxd)|*.mxd";
dig.Multiselect=false;
dlg.Title="OpenMapDocument";
if(dlg.ShowDialog()==DialogResult.OK)
(
stringdocName=dlg.FileName;
IMapDocumentmapDoc=newMapDocumentClass();
if(mapDoc.getJsPresent(docName)
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024綜合崗位勞動協(xié)議模板版B版
- 2024年版城市出租車租賃協(xié)議樣式版B版
- 2025年消防安全管理咨詢及標準制定合同2篇
- 2024-2025學年高中歷史第七單元復雜多樣的當代世界第24課兩極對峙格局的形成學案含解析岳麓版必修1
- 2024-2025學年高中語文課時分層作業(yè)4歸去來兮辭并序含解析新人教版必修5
- 二零二四年度時尚傳媒廣告投放及制作合同
- 2025年度道路照明燈具批發(fā)合同范本3篇
- 2025年酒店客房銷售渠道建設與維護合同3篇
- 2025年度綠色生態(tài)農(nóng)業(yè)種植承包合同范本3篇
- 2025年蔬菜種植戶與農(nóng)產(chǎn)品電商平臺合作合同范本3篇
- 醫(yī)院項目竣工驗收和工程收尾階段的管理措施專項方案
- 2024年涉密人員考試試題庫保密基本知識試題附答案(考試直接用)
- 2024年桂林中考物理試卷
- DL∕T 5362-2018 水工瀝青混凝土試驗規(guī)程
- (正式版)JC∕T 60023-2024 石膏條板應用技術規(guī)程
- DL-T5054-2016火力發(fā)電廠汽水管道設計規(guī)范
- (權變)領導行為理論
- 2024屆上海市浦東新區(qū)高三二模英語卷
- 家用電器可靠性與壽命預測研究
- 中考語文二輪復習:詩歌鑒賞系列之邊塞軍旅詩(知識點+方法+習題)
- 2024年智慧工地相關知識考試試題及答案
評論
0/150
提交評論