Browse Source

Implement DataGridColumnCollection's SetItem (#14469)

Co-authored-by: Max Katz <maxkatz6@outlook.com>
pull/16303/head
Elscrux 2 years ago
committed by GitHub
parent
commit
ceac0b8617
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      src/Avalonia.Controls.DataGrid/DataGridColumnCollection.cs

3
src/Avalonia.Controls.DataGrid/DataGridColumnCollection.cs

@ -237,7 +237,8 @@ namespace Avalonia.Controls
protected override void SetItem(int columnIndex, DataGridColumn dataGridColumn)
{
throw new NotSupportedException();
RemoveItem(columnIndex);
InsertItem(columnIndex, dataGridColumn);
}
internal bool DisplayInOrder(int columnIndex1, int columnIndex2)

Loading…
Cancel
Save