C# Class ComponentFactory.Krypton.Workspace.CellPageNotify

Proxy class for receiving page notifications.
Inheritance: IDragPageNotify
Datei anzeigen Open project: ComponentFactory/Krypton

Public Methods

Method Description
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.

Method Details

CellPageNotify() public method

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

PageDragEnd() public method

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.
return bool

PageDragMove() public method

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.
return void

PageDragQuit() public method

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

PageDragStart() public method

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.
return void