using Avalonia.Interactivity; namespace Avalonia.Input.TextInput { public class TextInputMethodClientRequestedEventArgs : RoutedEventArgs { /// /// Set this property to a valid text input client to enable input method interaction /// public ITextInputMethodClient? Client { get; set; } } }