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.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							35 lines
						
					
					
						
							1.2 KiB
						
					
					
				using ESRI.ArcGIS.Controls; | 
						|
 | 
						|
namespace Kingo.Plugin.EngineEditor.Commands.Tools | 
						|
{ | 
						|
    public class ControlsEditingVertexMoveCommandChinese : ControlsEditingVertexMoveCommandClass | 
						|
    { | 
						|
        protected string m_caption; | 
						|
        public ControlsEditingVertexMoveCommandChinese() | 
						|
        { | 
						|
            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 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 void OnCreate(object hook) | 
						|
        { | 
						|
            base.OnCreate(hook); | 
						|
        } | 
						|
 | 
						|
        public override void OnClick() | 
						|
        { | 
						|
            base.OnClick(); | 
						|
        } | 
						|
 | 
						|
    } | 
						|
}
 | 
						|
 |