Completed
Last Updated: 23 Oct 2019 12:25 by ADMIN
Release R3 2019 SP
The following exception is thrown when scrolling ListView with Grid layout with many columns and rows:
Windows.UI.Xaml.LayoutCycleException: Layout cycle detected.  Layout could not complete.
Completed
Last Updated: 09 Nov 2022 15:50 by ADMIN
Release R3 2022 SP1
Null Reference Exception is thrown when the ListView is initially grouped with more than 1 group descriptor and then the control is populated using Range Observable collection. 
Completed
Last Updated: 21 Jun 2017 13:28 by ADMIN
ADMIN
Created by: Rosy Topchiyska
Comments: 0
Category: ListView
Type: Feature Request
0
Implement caching of images on Android.
Completed
Last Updated: 19 Jul 2023 14:24 by ADMIN
Release R2 2023 SP1

Exception occurs when there are no items in the collection and load on demand mode is automatic: 

public ViewModel()
{
    this.Source = new ObservableCollection<string>();
    //for (int i = 0; i < 14; i++)
    //{
    //    this.Source.Add(string.Format("Item {0}", i));
    //}
    this.LoadItemsCommand = new Command(this.LoadItemsCommandExecute);
}

Completed
Last Updated: 04 Jun 2019 09:47 by ADMIN

Exception when SDK and User Assemblies are linked: Mono.Linker.MarkException

Exception when none are linked: System.TypeLoadException

Completed
Last Updated: 19 Jul 2023 14:24 by ADMIN
Release R2 2023 SP1
Null Reference Exception is thrown when the ListView is initially grouped and navigating back to page where is the ListView and new RangeCollection is assigned to the control.
1 2 3 4 5 6