Click here to Skip to main content
15,896,201 members
Articles / Desktop Programming / WPF

Replacing TreeView with ListBox

Rate me:
Please Sign up or sign in to vote.
4.83/5 (18 votes)
6 Oct 2011BSD4 min read 71.1K   5.2K   66  
TreeView is not good enough to support millions of nodes. Simulating using a ListBox might help.
using System.ComponentModel.Composition;
using MediaAssistant.Constants;
using MediaAssistant.DAL;
using MediaAssistant.Management;

namespace MediaAssistant.MusicDJ
{
    [Export(typeof(IMusicDJ))]
    public class SmartShuffleDJ : AMusicDJ
    {
        public SmartShuffleDJ()
            : base(MusicDJName.SmartDJ)
        {
        }

        [Import]
        private SmartDJProbabilityCalculationService ProbabilityService { get; set; }
        #region Overrides of AMusicDJ

        protected override void CalculateProbability(Music playingMusic)
        {
            ProbabilityService.StartCalculation(playingMusic, this);
        }

        #endregion
    }
}

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 BSD License


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