public virtual void DoKeyDown( KeyEventArgs e )
Parameters
- e
By default this just calls DoCancel if the key is the ESCAPE key.
This key event method isn't called because of the command mechanism. If you want this method to be called, override DoStart to call this.Diagram.CommandHandler.RemoveStandardBindings()
and override DoStop to call this.Diagram.CommandHandler.AddStandardBindings()
.