Skip to content

Commit

Permalink
Merge pull request AvaloniaUI#10002 from AvaloniaUI/fixes/BackRequest…
Browse files Browse the repository at this point in the history
…edEventHandler

Fix BackRequested EventHandler args type
  • Loading branch information
jmacato authored Jan 18, 2023
2 parents 975c77d + a698513 commit bf85f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Avalonia.Controls/TopLevel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public IBrush TransparencyBackgroundFallback
/// <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); }
Expand Down

0 comments on commit bf85f4d

Please sign in to comment.