C# 클래스 Eto.Forms.Button

상속: Eto.Forms.TextControl
파일 보기 프로젝트 열기: picoe/Eto 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Button ( ) : System

Initializes a new instance of the Eto.Forms.Button class.

Button ( EventHandler click ) : System

Initializes a new instance of the Eto.Forms.Button class with the specified click handler.

This is a convenience constructor to set up the click event.

PerformClick ( ) : void

Triggers the Click event for the button, if the button is visable and enabled.

보호된 메소드들

메소드 설명
GetCallback ( ) : object

Gets an instance of an object used to perform callbacks to the widget from handler implementations

OnClick ( EventArgs e ) : void

Raises the Click event

메소드 상세

Button() 공개 메소드

Initializes a new instance of the Eto.Forms.Button class.
public Button ( ) : System
리턴 System

Button() 공개 메소드

Initializes a new instance of the Eto.Forms.Button class with the specified click handler.
This is a convenience constructor to set up the click event.
public Button ( EventHandler click ) : System
click EventHandler Delegate to handle when the button is clicked.
리턴 System

GetCallback() 보호된 메소드

Gets an instance of an object used to perform callbacks to the widget from handler implementations
protected GetCallback ( ) : object
리턴 object

OnClick() 보호된 메소드

Raises the Click event
protected OnClick ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 void

PerformClick() 공개 메소드

Triggers the Click event for the button, if the button is visable and enabled.
public PerformClick ( ) : void
리턴 void