C# 클래스 ComponentFactory.Krypton.Toolkit.ToolTipManager

Manages when tooltips are displayed in response to provided messages.
파일 보기 프로젝트 열기: ComponentFactory/Krypton 1 사용 예제들

공개 메소드들

메소드 설명
DoubleClick ( ViewBase targetElement, Point pt ) : void

Left mouse button double click.

MouseDown ( ViewBase targetElement, Control c, Point pt, MouseButtons button ) : void

Mouse button has been pressed in the view.

MouseEnter ( ViewBase targetElement, Control c ) : void

Mouse has entered the view.

MouseLeave ( ViewBase targetElement, Control c, ViewBase next ) : void

Mouse has left the view.

MouseMove ( ViewBase targetElement, Control c, Point pt ) : void

Mouse has moved inside the view.

MouseUp ( ViewBase targetElement, Control c, Point pt, MouseButtons button ) : void

Mouse button has been released in the view.

ToolTipManager ( ) : System

Initialize a new instance of the TooltipManager class.

보호된 메소드들

메소드 설명
OnCancelToolTip ( ) : void

Raises the CancelTooltip event.

OnShowToolTip ( ToolTipEventArgs e ) : void

Raises the ShowTooltip event.

비공개 메소드들

메소드 설명
OnStartTimerTick ( object sender, EventArgs e ) : void
OnStopTimerTick ( object sender, EventArgs e ) : void

메소드 상세

DoubleClick() 공개 메소드

Left mouse button double click.
public DoubleClick ( ViewBase targetElement, Point pt ) : void
targetElement ViewBase Target element for the mouse message.
pt Point Mouse position relative to control.
리턴 void

MouseDown() 공개 메소드

Mouse button has been pressed in the view.
public MouseDown ( ViewBase targetElement, Control c, Point pt, MouseButtons button ) : void
targetElement ViewBase Target element for the mouse message.
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
button MouseButtons Mouse button pressed down.
리턴 void

MouseEnter() 공개 메소드

Mouse has entered the view.
public MouseEnter ( ViewBase targetElement, Control c ) : void
targetElement ViewBase Target element for the mouse message.
c System.Windows.Forms.Control Reference to the source control instance.
리턴 void

MouseLeave() 공개 메소드

Mouse has left the view.
public MouseLeave ( ViewBase targetElement, Control c, ViewBase next ) : void
targetElement ViewBase Target element for the mouse message.
c System.Windows.Forms.Control Reference to the source control instance.
next ViewBase Reference to view that is next to have the mouse.
리턴 void

MouseMove() 공개 메소드

Mouse has moved inside the view.
public MouseMove ( ViewBase targetElement, Control c, Point pt ) : void
targetElement ViewBase Target element for the mouse message.
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
리턴 void

MouseUp() 공개 메소드

Mouse button has been released in the view.
public MouseUp ( ViewBase targetElement, Control c, Point pt, MouseButtons button ) : void
targetElement ViewBase Target element for the mouse message.
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
button MouseButtons Mouse button released.
리턴 void

OnCancelToolTip() 보호된 메소드

Raises the CancelTooltip event.
protected OnCancelToolTip ( ) : void
리턴 void

OnShowToolTip() 보호된 메소드

Raises the ShowTooltip event.
protected OnShowToolTip ( ToolTipEventArgs e ) : void
e ToolTipEventArgs A TooltipEventArgs that contains the event data.
리턴 void

ToolTipManager() 공개 메소드

Initialize a new instance of the TooltipManager class.
public ToolTipManager ( ) : System
리턴 System