C# 클래스 Mono.Terminal.CheckBox

상속: Widget
파일 보기 프로젝트 열기: mono/mono-curses

공개 메소드들

메소드 설명
CheckBox ( int x, int y, string s ) : System

Public constructor, creates a CheckButton based on the given text at the given position.

The size of CheckButton is computed based on the text length. This CheckButton is not toggled.

CheckBox ( int x, int y, string s, bool is_checked ) : System

Public constructor, creates a CheckButton based on the given text at the given position and a state.

The size of CheckButton is computed based on the text length.

PositionCursor ( ) : void
ProcessKey ( int c ) : bool
ProcessMouse ( Curses ev ) : void
Redraw ( ) : void

메소드 상세

CheckBox() 공개 메소드

Public constructor, creates a CheckButton based on the given text at the given position.
The size of CheckButton is computed based on the text length. This CheckButton is not toggled.
public CheckBox ( int x, int y, string s ) : System
x int
y int
s string
리턴 System

CheckBox() 공개 메소드

Public constructor, creates a CheckButton based on the given text at the given position and a state.
The size of CheckButton is computed based on the text length.
public CheckBox ( int x, int y, string s, bool is_checked ) : System
x int
y int
s string
is_checked bool
리턴 System

PositionCursor() 공개 메소드

public PositionCursor ( ) : void
리턴 void

ProcessKey() 공개 메소드

public ProcessKey ( int c ) : bool
c int
리턴 bool

ProcessMouse() 공개 메소드

public ProcessMouse ( Curses ev ) : void
ev Curses
리턴 void

Redraw() 공개 메소드

public Redraw ( ) : void
리턴 void