Browse Source

Make DataGrid.SelectAll() public

pull/5826/head
Collin Alpert 5 years ago
committed by GitHub
parent
commit
a2b1320baf
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