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

Categories

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());
        }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...