clsSelectFeature.cs
上传用户:tjyyhj
上传日期:2022-07-18
资源大小:30840k
文件大小:3k
源码类别:

GIS编程

开发平台:

Visual C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using ESRI.ArcGIS.SystemUI;
  5. using ESRI.ArcGIS.Carto;
  6. using ESRI.ArcGIS.Controls;
  7. using ESRI.ArcGIS.Geometry;
  8. using ESRI.ArcGIS.Geodatabase;
  9. using GisFramework;
  10. namespace Genaric
  11. {
  12.     public class clsSelectFeature : ICommand,ITool 
  13.     {
  14.         private IApplication mApp = null;
  15.         #region ICommand 成员
  16.         public int Bitmap
  17.         {
  18.             get { return (Int32)Resource1.选择.Handle; }
  19.         }
  20.         public string Caption
  21.         {
  22.             get { return "选择"; }
  23.         }
  24.         public string Category
  25.         {
  26.             get { return "基本操作"; }
  27.         }
  28.         public bool Checked
  29.         {
  30.             get { return false; }
  31.         }
  32.         public bool Enabled
  33.         {
  34.             get { return true; }
  35.         }
  36.         public int HelpContextID
  37.         {
  38.             get { throw new Exception("The method or operation is not implemented."); }
  39.         }
  40.         public string HelpFile
  41.         {
  42.             get { throw new Exception("The method or operation is not implemented."); }
  43.         }
  44.         public string Message
  45.         {
  46.             get { return "选择要素"; }
  47.         }
  48.         public string Name
  49.         {
  50.             get { return "SelectFeatures"; }
  51.         }
  52.         public void OnClick()
  53.         {
  54.             ICommand pmc = new ControlsSelectFeaturesToolClass();
  55.             pmc.OnCreate(mApp.MapControl);
  56.             pmc.OnClick();
  57.             mApp.CurrentTool = pmc as ITool;
  58.            
  59.         }
  60.         public void OnCreate(object hook)
  61.         {
  62.             mApp = hook as IApplication;  
  63.         }
  64.         public string Tooltip
  65.         {
  66.             get {
  67.                 return "选择要素";
  68.             }
  69.         }
  70.         #endregion
  71.         #region ITool 成员
  72.         public int Cursor
  73.         {
  74.             get { return -1; }
  75.         }
  76.         public bool Deactivate()
  77.         {
  78.             throw new Exception("The method or operation is not implemented.");
  79.         }
  80.         public bool OnContextMenu(int x, int y)
  81.         {
  82.             throw new Exception("The method or operation is not implemented.");
  83.         }
  84.         public void OnDblClick()
  85.         {
  86.             throw new Exception("The method or operation is not implemented.");
  87.         }
  88.         public void OnKeyDown(int keyCode, int shift)
  89.         {
  90.             throw new Exception("The method or operation is not implemented.");
  91.         }
  92.         public void OnKeyUp(int keyCode, int shift)
  93.         {
  94.             throw new Exception("The method or operation is not implemented.");
  95.         }
  96.         public void OnMouseDown(int button, int shift, int x, int y)
  97.         {
  98.             throw new Exception("The method or operation is not implemented.");
  99.         }
  100.         public void OnMouseMove(int button, int shift, int x, int y)
  101.         {
  102.             throw new Exception("The method or operation is not implemented.");
  103.         }
  104.         public void OnMouseUp(int button, int shift, int x, int y)
  105.         {
  106.             throw new Exception("The method or operation is not implemented.");
  107.         }
  108.         public void Refresh(int hdc)
  109.         {
  110.             throw new Exception("The method or operation is not implemented.");
  111.         }
  112.         #endregion
  113.     }
  114. }