Skip to main content

IInputPane Interface

Definition

Assembly:Avalonia.Controls
Package:Avalonia

Listener for the platform's input pane(eg, software keyboard). Provides access to the input pane height and state.

public interface IInputPane

Properties

NameDescription
OccludedRectThe current input pane bounds.
StateThe 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

NameDescription
StateChangedOccurs 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