Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.4k views
in Technique[技术] by (71.8m points)

c# - collection view lazy loading in code behind Not MVVM [Xamarin forms]

Did anyone try to implement a lazy loading feature for Collection View Control using the code Behind not the MVVM architecture? I have a group of items that sometimes reach 2000 items with pictures, I need to display 20 items and when going to the bottom of the page, another 20 are displayed !! There are many explanations all in MVVM style, I need help using Behind code

        var CategutyRespons = await httpclint.GetAsync(URL + "/Categuty");
        if (CategutyRespons.StatusCode == System.Net.HttpStatusCode.OK)
        {
            var jsonResponse = await CategutyRespons.Content.ReadAsStringAsync();
            var CategutysList = JsonConvert.DeserializeObject<StartDataClass>(jsonResponse);
            //Binding Data to CollectionView 
            Category.ItemsSource = CategutysList.Categories.OrderBy(x => Guid.NewGuid());
        }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...