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

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 GisFramework;
  8. namespace Genaric
  9. {
  10.     public class clsSaveEditing : ICommand  
  11.     {
  12.         private IApplication mApp = null;
  13.         #region ICommand 成员
  14.         public int Bitmap
  15.         {
  16.             get { return (Int32)Resource1.保存.Handle; }
  17.         }
  18.         public string Caption
  19.         {
  20.             get { return "保存编辑"; }
  21.         }
  22.         public string Category
  23.         {
  24.             get { return "文件"; }
  25.         }
  26.         public bool Checked
  27.         {
  28.             get { return false; }
  29.         }
  30.         public bool Enabled
  31.         {
  32.             get { return true; }
  33.         }
  34.         public int HelpContextID
  35.         {
  36.             get { throw new Exception("The method or operation is not implemented."); }
  37.         }
  38.         public string HelpFile
  39.         {
  40.             get { throw new Exception("The method or operation is not implemented."); }
  41.         }
  42.         public string Message
  43.         {
  44.             get { return "保存当前所有的编辑任务"; }
  45.         }
  46.         public string Name
  47.         {
  48.             get { return "Save Editing"; }
  49.         }
  50.         public void OnClick()
  51.         {
  52.             try
  53.             {
  54.                 ICommand pmc = new ControlsEditingSaveCommandClass();
  55.                 pmc.OnCreate(mApp.MapControl);
  56.                 pmc.OnClick();
  57.             }
  58.             catch { }
  59.             //mApp.CurrentTool = pmc as ITool;
  60.         }
  61.         public void OnCreate(object hook)
  62.         {
  63.             mApp = hook as IApplication;
  64.         }
  65.         public string Tooltip
  66.         {
  67.             get {
  68.                 return "保存当前所有的编辑任务";
  69.             }
  70.         }
  71.         #endregion
  72.          
  73.     }
  74. }