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.
81 lines
2.4 KiB
81 lines
2.4 KiB
using ESRI.ArcGIS.Controls; |
|
|
|
namespace Kingo.Plugin.EngineEditor.Commands.Tools |
|
{ |
|
public class ControlsMapIdentifyToolClassChinese : ControlsMapIdentifyToolClass |
|
{ |
|
protected string m_caption; |
|
public ControlsMapIdentifyToolClassChinese() |
|
{ |
|
m_caption = "识别"; |
|
} |
|
|
|
public override int Bitmap { get { return base.Bitmap; } } |
|
public override string Caption { get { return m_caption; } } |
|
public override string Category { get { return base.Category; } } |
|
public override bool Checked { get { return base.Checked; } } |
|
public override int Cursor { get { return base.Cursor; } } |
|
public override bool Enabled { get { return base.Enabled; } } |
|
public override int HelpContextID { get { return base.HelpContextID; } } |
|
public override string HelpFile { get { return base.HelpFile; } } |
|
public override string Message { get { return base.Message; } } |
|
public override string Name { get { return base.Name; } } |
|
public override string Tooltip { get { return base.Tooltip; } } |
|
|
|
public override bool Deactivate() |
|
{ |
|
return base.Deactivate(); |
|
} |
|
|
|
public override void OnClick() |
|
{ |
|
base.OnClick(); |
|
} |
|
|
|
public override bool OnContextMenu(int x, int y) |
|
{ |
|
return base.OnContextMenu(x, y); |
|
} |
|
|
|
public override void OnCreate(object hook) |
|
{ |
|
base.OnCreate(hook); |
|
} |
|
|
|
public override void OnDblClick() |
|
{ |
|
base.OnDblClick(); |
|
} |
|
|
|
public override void OnKeyDown(int keyCode, int shift) |
|
{ |
|
base.OnKeyDown(keyCode, shift); |
|
} |
|
|
|
public override void OnKeyUp(int keyCode, int shift) |
|
{ |
|
base.OnKeyUp(keyCode, shift); |
|
} |
|
|
|
public override void OnMouseDown(int button, int shift, int x, int y) |
|
{ |
|
base.OnMouseDown(button, shift, x, y); |
|
} |
|
|
|
public override void OnMouseMove(int button, int shift, int x, int y) |
|
{ |
|
base.OnMouseMove(button, shift, x, y); |
|
} |
|
|
|
public override void OnMouseUp(int button, int shift, int x, int y) |
|
{ |
|
base.OnMouseUp(button, shift, x, y); |
|
} |
|
|
|
public override void Refresh(int hdc) |
|
{ |
|
base.Refresh(hdc); |
|
} |
|
|
|
} |
|
}
|
|
|