C# 클래스 Xwt.GtkBackend.TextEntryBackend

상속: WidgetBackend, ITextEntryBackend
파일 보기 프로젝트 열기: mono/xwt 1 사용 예제들

공개 메소드들

메소드 설명
DisableEvent ( object eventId ) : void
EnableEvent ( object eventId ) : void
Initialize ( ) : void
SetCompletionMatchFunc ( Func matchFunc ) : void

Set a custom matching function used to decide which completion from SetCompletions list are shown for the given input

SetCompletions ( string completions ) : void

Set the list of completions that will be shown by the entry

비공개 메소드들

메소드 설명
CreateCompletion ( ) : Gtk.EntryCompletion
HandleActivated ( object sender, EventArgs e ) : void
HandleButtonPressEvent ( object o, Gtk args ) : void
HandleButtonReleaseEvent ( object o, Gtk args ) : void
HandleChanged ( object sender, EventArgs e ) : void
HandleMotionNotifyEvent ( object o, Gtk args ) : void
HandleMoveCursor ( object sender, EventArgs e ) : void
HandleSelectionChanged ( ) : void

메소드 상세

DisableEvent() 공개 메소드

public DisableEvent ( object eventId ) : void
eventId object
리턴 void

EnableEvent() 공개 메소드

public EnableEvent ( object eventId ) : void
eventId object
리턴 void

Initialize() 공개 메소드

public Initialize ( ) : void
리턴 void

SetCompletionMatchFunc() 공개 메소드

Set a custom matching function used to decide which completion from SetCompletions list are shown for the given input
public SetCompletionMatchFunc ( Func matchFunc ) : void
matchFunc Func A function which parameter are, in order, the current text entered by the user and a completion candidate. /// Returns true if the candidate should be included in the completion list.
리턴 void

SetCompletions() 공개 메소드

Set the list of completions that will be shown by the entry
public SetCompletions ( string completions ) : void
completions string The list of completion or null if no completions should be shown
리턴 void