Browse Source

Merge pull request #11956 from Gillibald/fixes/TextInputEventArgsTextSetter

Make TextInputEventArgs.Text settable
pull/11971/head
Max Katz 3 years ago
committed by GitHub
parent
commit
1efaffee4a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.Base/Input/TextInputEventArgs.cs

2
src/Avalonia.Base/Input/TextInputEventArgs.cs

@ -4,6 +4,6 @@ namespace Avalonia.Input
{
public class TextInputEventArgs : RoutedEventArgs
{
public string? Text { get; init; }
public string? Text { get; set; }
}
}

Loading…
Cancel
Save