C# 클래스 ComponentFactory.Krypton.Navigator.DragFeedback

Base class for drag feedback implementations.
상속: IDisposable
파일 보기 프로젝트 열기: ComponentFactory/Krypton 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void

Release managed and unmanaged resources.

Feedback ( Point screenPt, DragTarget target ) : DragTarget

Called to request feedback be shown for the specified target.

Quit ( ) : void

Called to cleanup when dragging has finished.

Start ( IPaletteDragDrop paletteDragDrop, IRenderer renderer, PageDragEndData pageDragEndData, DragTargetList dragTargets ) : void

Called to initialize the implementation when dragging starts.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Release unmanaged and optionally managed resources.

메소드 상세

Dispose() 공개 메소드

Release managed and unmanaged resources.
public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

Release unmanaged and optionally managed resources.
protected Dispose ( bool disposing ) : void
disposing bool Called from Dispose method.
리턴 void

Feedback() 공개 추상적인 메소드

Called to request feedback be shown for the specified target.
public abstract Feedback ( Point screenPt, DragTarget target ) : DragTarget
screenPt Point Current screen point of mouse.
target DragTarget Target that needs feedback.
리턴 DragTarget

Quit() 공개 메소드

Called to cleanup when dragging has finished.
public Quit ( ) : void
리턴 void

Start() 공개 메소드

Called to initialize the implementation when dragging starts.
public Start ( IPaletteDragDrop paletteDragDrop, IRenderer renderer, PageDragEndData pageDragEndData, DragTargetList dragTargets ) : void
paletteDragDrop IPaletteDragDrop Drawing palette.
renderer IRenderer Drawing renderer.
pageDragEndData PageDragEndData Drag data associated with drag operation.
dragTargets DragTargetList List of all drag targets.
리턴 void