C# Класс ComponentFactory.Krypton.Workspace.CellPageNotify

Proxy class for receiving page notifications.
Наследование: IDragPageNotify
Показать файл Открыть проект

Открытые методы

Метод Описание
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