C# 클래스 ComponentFactory.Krypton.Workspace.CellPageNotify

Proxy class for receiving page notifications.
상속: IDragPageNotify
파일 보기 프로젝트 열기: ComponentFactory/Krypton

공개 메소드들

메소드 설명
CellPageNotify ( KryptonWorkspace workspace ) : System

Initialize a new instance of the CellPageNotify class.

PageDragEnd ( object sender, PointEventArgs e ) : bool

Occurs when drag operation completes with pages being dropped.

PageDragMove ( object sender, PointEventArgs e ) : void

Occurs when the mouse moves during the drag operation.

PageDragQuit ( object sender ) : void

Occurs when dragging pages has been cancelled.

PageDragStart ( object sender, KryptonNavigator navigator, PageDragCancelEventArgs e ) : void

Occurs when a page drag is about to begin and allows it to be cancelled.

메소드 상세

CellPageNotify() 공개 메소드

Initialize a new instance of the CellPageNotify class.
public CellPageNotify ( KryptonWorkspace workspace ) : System
workspace KryptonWorkspace Reference to owning workspace.
리턴 System

PageDragEnd() 공개 메소드

Occurs when drag operation completes with pages being dropped.
public PageDragEnd ( object sender, PointEventArgs e ) : bool
sender object Source of the page drag; can be null.
e ComponentFactory.Krypton.Toolkit.PointEventArgs Event arguments containing the new screen point of the mouse.
리턴 bool

PageDragMove() 공개 메소드

Occurs when the mouse moves during the drag operation.
public PageDragMove ( object sender, PointEventArgs e ) : void
sender object Source of the page drag; can be null.
e ComponentFactory.Krypton.Toolkit.PointEventArgs Event arguments containing the new screen point of the mouse.
리턴 void

PageDragQuit() 공개 메소드

Occurs when dragging pages has been cancelled.
public PageDragQuit ( object sender ) : void
sender object Source of the page drag; can be null.
리턴 void

PageDragStart() 공개 메소드

Occurs when a page drag is about to begin and allows it to be cancelled.
public PageDragStart ( object sender, KryptonNavigator navigator, PageDragCancelEventArgs e ) : void
sender object Source of the page drag; should never be null.
navigator ComponentFactory.Krypton.Navigator.KryptonNavigator Navigator instance associated with source; can be null.
e ComponentFactory.Krypton.Navigator.PageDragCancelEventArgs Event arguments indicating list of pages being dragged.
리턴 void