C# Класс Xwt.GtkBackend.TextEntryBackend

Наследование: WidgetBackend, ITextEntryBackend
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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