You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.8 KiB
86 lines
1.8 KiB
using ESRI.ArcGIS.Carto; |
|
using ESRI.ArcGIS.Controls; |
|
using ESRI.ArcGIS.Geodatabase; |
|
using ESRI.ArcGIS.Geometry; |
|
using ESRI.ArcGIS.SystemUI; |
|
using KGIS.Framework.Utils; |
|
using KGIS.Framework.Utils.Enum; |
|
using KGIS.Framework.Utils.Helper; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
using UIShell.OSGi; |
|
using KGIS.Framework.Platform; |
|
using System.Windows.Forms; |
|
using Kingo.Plugin.MapView.Interface; |
|
using KGIS.Framework.Utils.Interface; |
|
|
|
namespace Kingo.Plugin.MapView.Commands |
|
{ |
|
public class CmdFullPic : ICheckBarItem |
|
{ |
|
private bool _Checked; |
|
public void OnCreate(object Hook) |
|
{ |
|
|
|
} |
|
|
|
public void OnClick() |
|
{ |
|
_Checked = !_Checked; |
|
if (_Checked) |
|
Platform.Instance.SendMsg(new NotifyMsgPackage() { MsgType = "FullShowPic" }); |
|
else |
|
Platform.Instance.SendMsg(new NotifyMsgPackage() { MsgType = "CloseFullShowPic" }); |
|
} |
|
|
|
public bool Checked => _Checked; |
|
|
|
public int Bitmap |
|
{ |
|
get { return 0; } |
|
} |
|
|
|
public string Caption |
|
{ |
|
get { return ""; } |
|
} |
|
|
|
public string Category |
|
{ |
|
get { return ""; } |
|
} |
|
|
|
public bool Enabled |
|
{ |
|
get { return true; } |
|
} |
|
|
|
public int HelpContextID |
|
{ |
|
get { return 0; } |
|
} |
|
|
|
public string HelpFile |
|
{ |
|
get { return ""; } |
|
} |
|
|
|
public string Message |
|
{ |
|
get { return ""; } |
|
} |
|
|
|
public string Name |
|
{ |
|
get { return ""; } |
|
} |
|
|
|
public virtual string Tooltip |
|
{ |
|
get { return ""; } |
|
} |
|
} |
|
}
|
|
|