Browse Source
Merge pull request #9534 from Gillibald/fixes/inputEventArgsVisibility
Make KeyEventArgs and TextInputEventArgs public again
pull/9737/head
Max Katz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
src/Avalonia.Base/Input/KeyEventArgs.cs
-
src/Avalonia.Base/Input/TextInputEventArgs.cs
|
|
|
@ -5,7 +5,7 @@ namespace Avalonia.Input |
|
|
|
{ |
|
|
|
public class KeyEventArgs : RoutedEventArgs |
|
|
|
{ |
|
|
|
internal KeyEventArgs() |
|
|
|
public KeyEventArgs() |
|
|
|
{ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@ -4,7 +4,7 @@ namespace Avalonia.Input |
|
|
|
{ |
|
|
|
public class TextInputEventArgs : RoutedEventArgs |
|
|
|
{ |
|
|
|
internal TextInputEventArgs() |
|
|
|
public TextInputEventArgs() |
|
|
|
{ |
|
|
|
|
|
|
|
} |
|
|
|
|