C# 클래스 SourceGrid.Cells.Controllers.Button

Button controller is used to executed a specific action when the user click on a cell or when the user press the Enter or Space key (using the OnKeyDown event). Is normally used with the Link or Button Cell. Override the OnExecuted to add your code or use the Executed event.
상속: ControllerBase
파일 보기 프로젝트 열기: zhuangyy/Motion 1 사용 예제들

공개 메소드들

메소드 설명
OnClick ( CellContext sender, EventArgs e ) : void
OnExecuted ( CellContext sender, EventArgs e ) : void
OnKeyDown ( CellContext sender, KeyEventArgs e ) : void
OnMouseDown ( CellContext sender, MouseEventArgs e ) : void

메소드 상세

OnClick() 공개 메소드

public OnClick ( CellContext sender, EventArgs e ) : void
sender CellContext
e System.EventArgs
리턴 void

OnExecuted() 공개 메소드

public OnExecuted ( CellContext sender, EventArgs e ) : void
sender CellContext
e System.EventArgs
리턴 void

OnKeyDown() 공개 메소드

public OnKeyDown ( CellContext sender, KeyEventArgs e ) : void
sender CellContext
e System.Windows.Forms.KeyEventArgs
리턴 void

OnMouseDown() 공개 메소드

public OnMouseDown ( CellContext sender, MouseEventArgs e ) : void
sender CellContext
e System.Windows.Forms.MouseEventArgs
리턴 void