VirtualKeyboardInputCandidate Class
Definition
Represents an input candidate suggestion from an Input Method Editor (IME), typically used for complex text input systems.
public class VirtualKeyboardInputCandidate
Constructors
| Name | Description |
|---|---|
| VirtualKeyboardInputCandidate | Represents 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
| Name | Description |
|---|---|
| Content | Gets the content of this input candidate. |
| SelectCommand | Gets 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
| Name | Description |
|---|---|
| PropertyChanged | Occurs when a property value changes. |
| Selected | Occurs 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