Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch SplitView.IsPaneOpen to a StyledProperty #10138

Merged
merged 11 commits into from
Feb 22, 2023
4 changes: 2 additions & 2 deletions src/Avalonia.Controls/Expander.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ protected virtual void OnCollapsed(RoutedEventArgs eventArgs)
/// <summary>
/// Invoked just before the <see cref="Collapsing"/> event.
/// </summary>
protected virtual void OnCollapsing(RoutedEventArgs eventArgs)
protected virtual void OnCollapsing(CancelRoutedEventArgs eventArgs)
{
RaiseEvent(eventArgs);
}
Expand All @@ -207,7 +207,7 @@ protected virtual void OnExpanded(RoutedEventArgs eventArgs)
/// <summary>
/// Invoked just before the <see cref="Expanding"/> event.
/// </summary>
protected virtual void OnExpanding(RoutedEventArgs eventArgs)
protected virtual void OnExpanding(CancelRoutedEventArgs eventArgs)
{
RaiseEvent(eventArgs);
}
Expand Down
Loading