Describe the bug
In AdvancedCollection.cs,
private bool HandleItemAdded(int newStartingIndex, object newItem, int? viewIndex = null)
{
...
else if (newStartingIndex == _source.Count - 1)
{
newViewIndex = _view.Count - 1;
}
...
}
When an item is added at the end of the source collection (i.e. _source.Count -1), the AdvancedCollection will insert it at the position _view.Count - 1, which is the position just before the last item in the view. This is not correct and results in the items order not respecting the source collection order, if the view does not use sorting.
Steps to reproduce
Please refer to the source code above, it's obvious.
Expected behavior
The expected behavior is that the item is added at the end of the collection.
Screenshots
No response
Code Platform
Windows Build Number
Other Windows Build number
No response
App minimum and target SDK version
Other SDK version
No response
Visual Studio Version
No response
Visual Studio Build Number
No response
Device form factor
No response
Additional context
No response
Help us help you
Yes, I'd like to be assigned to work on this item.
Describe the bug
In AdvancedCollection.cs,
When an item is added at the end of the source collection (i.e.
_source.Count -1), the AdvancedCollection will insert it at the position_view.Count - 1, which is the position just before the last item in the view. This is not correct and results in the items order not respecting the source collection order, if the view does not use sorting.Steps to reproduce
Expected behavior
The expected behavior is that the item is added at the end of the collection.
Screenshots
No response
Code Platform
Windows Build Number
Other Windows Build number
No response
App minimum and target SDK version
Other SDK version
No response
Visual Studio Version
No response
Visual Studio Build Number
No response
Device form factor
No response
Additional context
No response
Help us help you
Yes, I'd like to be assigned to work on this item.