TextInputEventArgs.cs 386 B

1234567891011121314
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using Avalonia.Interactivity;
  4. namespace Avalonia.Input
  5. {
  6. public class TextInputEventArgs : RoutedEventArgs
  7. {
  8. public IKeyboardDevice Device { get; set; }
  9. public string Text { get; set; }
  10. }
  11. }