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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; } |
|
|
|
} |
|
|
|
} |
|
|
|
|