Click here to Skip to main content
15,888,006 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.3K   5.6K   41  
WrapPanel doesn't support virtualization. But we can improve the performance by simulating virtualization.
using System;

namespace MediaAssistant.DAL
{
    public partial class Music:IId
    {
        private double _probability;
        public double Probability
        {
            get { return _probability; }
            set
            {
                _probability = value;
                OnPropertyChanged("Probability");
            }
        }


        private double _cumulativeProbability;
        public double CumulativeProbability
        {
            get { return _cumulativeProbability; }
            set
            {
                _cumulativeProbability = value;
                OnPropertyChanged("CumulativeProbability");
            }
        }

        private int _index;
        public int Index
        {
            get { return _index; }
            set
            {
                _index = value;
                OnPropertyChanged("Index");
            }
        }

        private string _status;
        public string Status
        {
            get { return _status; }
            set
            {
                _status = value;
                OnPropertyChanged("Status");
            }
        }

        private double _totalScore;
        public double TotalScore
        {
            get { return _totalScore; }
            set
            {
                _totalScore = value;
                OnPropertyChanged("TotalScore");
            }
        }

        private bool _isReady;
        public bool IsReady
        {
            get { return _isReady; }
            set
            {
                _isReady = value;
                OnPropertyChanged("IsReady");
            }
        }

        private string _preferance;
        public string Preferance
        {
            get { return _preferance; }
            set
            {
                _preferance = value;
                OnPropertyChanged("Preferance");
            }
        }

        public override string ToString()
        {
            return FileName;
        }
    }
}

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