Browse Source
Merge pull request #9528 from dif-sam/patch-1
Fix SelectionChanged event unsubscribtions
missing_content_repro
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.Controls.DataGrid/DataGrid.cs
|
|
|
@ -1296,7 +1296,7 @@ namespace Avalonia.Controls |
|
|
|
public event EventHandler<SelectionChangedEventArgs> SelectionChanged |
|
|
|
{ |
|
|
|
add { AddHandler(SelectionChangedEvent, value); } |
|
|
|
remove { AddHandler(SelectionChangedEvent, value); } |
|
|
|
remove { RemoveHandler(SelectionChangedEvent, value); } |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|