Click here to Skip to main content
15,895,746 members
Articles / Desktop Programming / WPF

Wrap Panel Virtualization

Rate me:
Please Sign up or sign in to vote.
4.95/5 (18 votes)
2 Jan 2012CPOL2 min read 53.7K   5.6K   41  
WrapPanel doesn't support virtualization. But we can improve the performance by simulating virtualization.
using System.Collections.Generic;

namespace MediaAssistant.DAL
{
    public partial class LibraryItem
    {
        public LibraryItem()
        {
            HasChildren = false;
        }

        public IEnumerable<LibraryItem> OrderedChildren
        {
            get
            {
                return DatabaseManager.Instance.GetOrderedChildren(this);
            }
        }


        private bool _isExpanded;

        public bool IsExpanded
        {
            get { return _isExpanded; }
            set
            {
                _isExpanded = value;
                OnPropertyChanged("IsExpanded");
            }
        }

        public int Lavel { get; set; }

        public IEnumerable<Music> GetAllMusic()
        {
            var musics = new List<Music>();
            AddMusicsRecursively(musics, this);
            return musics;
        }

        private static void AddMusicsRecursively(ICollection<Music> musics, LibraryItem libraryItem)
        {
            foreach (var music in libraryItem.Musics)
            {
                if(musics.Contains(music)==false)
                    musics.Add(music);
            }
            foreach (var child in libraryItem.Children)
            {
                AddMusicsRecursively(musics, child);
            }
        }

        public IEnumerable<Movie> GetAllMovies()
        {
            var movies = new List<Movie>();
            AddMovieRecursively(movies, this);
            return movies;
        }

        private static void AddMovieRecursively(ICollection<Movie> movies, LibraryItem libraryItem)
        {
            foreach (var music in libraryItem.Movies)
            {
                if (movies.Contains(music) == false)
                    movies.Add(music);
            }
            foreach (var child in libraryItem.Children)
            {
                AddMovieRecursively(movies, child);
            }
        }
        public override string ToString()
        {
            return Title;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) KAZ Software Limited
Bangladesh Bangladesh
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions