clsZoomOut.cs
资源名称:gis.rar [点击查看]
上传用户:tjyyhj
上传日期:2022-07-18
资源大小:30840k
文件大小:3k
源码类别:
GIS编程
开发平台:
Visual C++
- using System;
- using System.Collections.Generic;
- using System.Text;
- using ESRI.ArcGIS.SystemUI;
- using ESRI.ArcGIS.Carto;
- using ESRI.ArcGIS.Controls;
- using GisFramework;
- namespace Genaric
- {
- public class clsZoomOut : ICommand, ITool
- {
- private IApplication mApp = null;
- #region ICommand 成员
- public int Bitmap
- {
- get { return (Int32)Resource1.缩小地图.Handle; }
- }
- public string Caption
- {
- get { return "缩小"; }
- }
- public string Category
- {
- get { return "基本操作"; }
- }
- public bool Checked
- {
- get { return false; }
- }
- public bool Enabled
- {
- get { return true; }
- }
- public int HelpContextID
- {
- get { throw new Exception("The method or operation is not implemented."); }
- }
- public string HelpFile
- {
- get { throw new Exception("The method or operation is not implemented."); }
- }
- public string Message
- {
- get { return "按选区进行缩放操作"; }
- }
- public string Name
- {
- get { return "Zoom Out"; }
- }
- public void OnClick()
- {
- ICommand pmc = new ControlsMapZoomOutToolClass();
- pmc.OnCreate(mApp.MapControl);
- pmc.OnClick();
- mApp.CurrentTool = pmc as ITool;
- }
- public void OnCreate(object hook)
- {
- mApp = hook as IApplication;
- }
- public string Tooltip
- {
- get {
- return "按选区进行缩小操作";
- }
- }
- #endregion
- #region ITool 成员
- public int Cursor
- {
- get { return -1; }
- }
- public bool Deactivate()
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public bool OnContextMenu(int x, int y)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public void OnDblClick()
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public void OnKeyDown(int keyCode, int shift)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public void OnKeyUp(int keyCode, int shift)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public void OnMouseDown(int button, int shift, int x, int y)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public void OnMouseMove(int button, int shift, int x, int y)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public void OnMouseUp(int button, int shift, int x, int y)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public void Refresh(int hdc)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- #endregion
- }
- }