Browse Source
Merge pull request #9538 from timunie/backport/GH_9528
Backport #9528
fixes/build-stable-with-6.0.202
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
|
|
|
@ -1254,7 +1254,7 @@ namespace Avalonia.Controls |
|
|
|
public event EventHandler<SelectionChangedEventArgs> SelectionChanged |
|
|
|
{ |
|
|
|
add { AddHandler(SelectionChangedEvent, value); } |
|
|
|
remove { AddHandler(SelectionChangedEvent, value); } |
|
|
|
remove { RemoveHandler(SelectionChangedEvent, value); } |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|