Skip to main content

VirtualKeyboardInputCandidate Class

Definition

Assembly:Avalonia.Controls.VirtualKeyboard
Package:Avalonia.Controls.VirtualKeyboard

Represents an input candidate suggestion from an Input Method Editor (IME), typically used for complex text input systems.

public class VirtualKeyboardInputCandidate

Inheritance: object -> VirtualKeyboardInputCandidate

Implements: INotifyPropertyChanged

Constructors

NameDescription
VirtualKeyboardInputCandidateRepresents an input candidate suggestion from an Input Method Editor (IME), typically used for complex text input systems.

VirtualKeyboardInputCandidate Constructor

Represents an input candidate suggestion from an Input Method Editor (IME), typically used for complex text input systems.

public VirtualKeyboardInputCandidate(object content)

Parameters

content object

Properties

NameDescription
ContentGets the content of this input candidate.
SelectCommandGets the command that is executed when this candidate is selected.

Content Property

Gets the content of this input candidate.

public object Content { get; set; }

SelectCommand Property

Gets the command that is executed when this candidate is selected.

public System.Windows.Input.ICommand SelectCommand { get; set; }

Events

NameDescription
PropertyChangedOccurs when a property value changes.
SelectedOccurs when this candidate is selected by the user.

PropertyChanged Event

Occurs when a property value changes.

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged

Selected Event

Occurs when this candidate is selected by the user.

public event EventHandler Selected