Browse Source
Merge pull request #5826 from CollinAlpert/master
Make DataGrid.SelectAll() public
pull/5844/head
Dan Walmsley
5 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
|
|
|
@ -5357,7 +5357,7 @@ namespace Avalonia.Controls |
|
|
|
_focusedRow = null; |
|
|
|
} |
|
|
|
|
|
|
|
private void SelectAll() |
|
|
|
public void SelectAll() |
|
|
|
{ |
|
|
|
SetRowsSelection(0, SlotCount - 1); |
|
|
|
} |
|
|
|
|