IInputPane Interface
Definition
Listener for the platform's input pane(eg, software keyboard). Provides access to the input pane height and state.
public interface IInputPane
Properties
| Name | Description |
|---|---|
| OccludedRect | The current input pane bounds. |
| State | The current input pane state. |
OccludedRect Property
The current input pane bounds.
public Avalonia.Rect OccludedRect { get; set; }
State Property
The current input pane state.
public Avalonia.Controls.Platform.InputPaneState State { get; set; }
Events
| Name | Description |
|---|---|
| StateChanged | Occurs when the input pane's state has changed. |
StateChanged Event
Occurs when the input pane's state has changed.
public event EventHandler<Avalonia.Controls.Platform.InputPaneStateEventArgs> StateChanged