Browse Source

Merge pull request #5826 from CollinAlpert/master

Make DataGrid.SelectAll() public
pull/5844/head
Dan Walmsley 5 years ago
committed by GitHub
parent
commit
adcba9f0a6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.Controls.DataGrid/DataGrid.cs

2
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);
}

Loading…
Cancel
Save