Open
Description
Describe the bug
When DataGrid
handles a remove event when resort happens, it gets the removed item from the sender:
_owner.RemoveRowAt(index, sender[index]);
However, since the item is already removed from the sender, it will get the wrong item. This can be verified by the source of AdvancedCollectionView
_view.RemoveAt(oldIndex);
var targetIndex = _view.BinarySearch(item, this);
if (targetIndex < 0)
{
targetIndex = ~targetIndex;
}
// Only trigger expensive UI updates if the index really changed:
if (targetIndex != oldIndex)
{
OnVectorChanged(new VectorChangedEventArgs(CollectionChange.ItemRemoved, oldIndex, item));
Particularly, if an item is removed from the end, the index will be out of the bound of the source list, thus an ArgumentOutOfRangeException
will be thrown by the AdvancedCollectionView
, with such stack trace:
System.Private.CoreLib.dll!System.ThrowHelper.ThrowArgumentOutOfRange_IndexMustBeLessException() Line 118 C#
System.Private.CoreLib.dll!System.Collections.Generic.List<object>.this[int].get(int index) Line 152 C#
CommunityToolkit.WinUI.UI.dll!CommunityToolkit.WinUI.UI.AdvancedCollectionView.this[int].get(int index) Line 117 C#
CommunityToolkit.WinUI.UI.Controls.DataGrid.dll!CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection.NotifyingDataSource_VectorChanged(Windows.Foundation.Collections.IObservableVector<object> sender, Windows.Foundation.Collections.IVectorChangedEventArgs e) Line 579 C#
CommunityToolkit.WinUI.UI.Controls.DataGrid.dll!CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection.WireEvents.AnonymousMethod__74_2(CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection instance, object source, Windows.Foundation.Collections.IVectorChangedEventArgs eventArgs) Line 451 C#
CommunityToolkit.WinUI.UI.Controls.DataGrid.dll!CommunityToolkit.WinUI.Utilities.WeakEventListener<CommunityToolkit.WinUI.UI.Controls.DataGridInternals.DataGridDataConnection, object, Windows.Foundation.Collections.IVectorChangedEventArgs>.OnEvent(object source, Windows.Foundation.Collections.IVectorChangedEventArgs eventArgs) Line 32 C#
CommunityToolkit.WinUI.UI.dll!CommunityToolkit.WinUI.UI.AdvancedCollectionView.OnVectorChanged(Windows.Foundation.Collections.IVectorChangedEventArgs e) Line 702 C#
Regression
No response
Reproducible in sample app?
- This bug can be reproduced in the sample app.
Steps to reproduce
Build a `DataGrid` based on `AdvancedCollectionView` which enables sorting. An exception will be thrown in `AdvancedCollectionView.ItemOnPropertyChanged()` if the tail element is removed from `AdvancedCollectionView._view`.
Expected behavior
The DataGrid
should get the right removed item when handling event.
Screenshots
Windows Build Number
- Windows 10 1809 (Build 17763)
- Windows 10 1903 (Build 18362)
- Windows 10 1909 (Build 18363)
- Windows 10 2004 (Build 19041)
- Windows 10 20H2 (Build 19042)
- Windows 10 21H1 (Build 19043)
- Windows 11 21H2 (Build 22000)
- Other (specify)
Other Windows Build number
No response
App minimum and target SDK version
- Windows 10, version 1809 (Build 17763)
- Windows 10, version 1903 (Build 18362)
- Windows 10, version 1909 (Build 18363)
- Windows 10, version 2004 (Build 19041)
- Other (specify)
Other SDK version
No response
Visual Studio Version
2022
Visual Studio Build Number
No response
Device form factor
Desktop
Nuget packages
communitytoolkit.winui.ui.controls 7.1.2
communitytoolkit.winui.ui.controls.datagrid 7.1.2
Additional context
No response
Help us help you
Yes, I'd like to be assigned to work on this item.