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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
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) |
|
|
|
|