Browse Source
Merge pull request #10002 from AvaloniaUI/fixes/BackRequestedEventHandler
Fix BackRequested EventHandler args type
pull/10019/head
Jumar Macato
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.Controls/TopLevel.cs
|
|
|
@ -318,7 +318,7 @@ namespace Avalonia.Controls |
|
|
|
/// <summary>
|
|
|
|
/// Occurs when physical Back Button is pressed or a back navigation has been requested.
|
|
|
|
/// </summary>
|
|
|
|
public event EventHandler<RoutedEvent> BackRequested |
|
|
|
public event EventHandler<RoutedEventArgs> BackRequested |
|
|
|
{ |
|
|
|
add { AddHandler(BackRequestedEvent, value); } |
|
|
|
remove { RemoveHandler(BackRequestedEvent, value); } |
|
|
|
|