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

namespace MefBasic.Helper
{
    public class SynchronizationContextHelper
    {
        private static readonly object LockObject=new object();
        private static SynchronizationContextHelper _instance;
        private SynchronizationContext _context;

        public static SynchronizationContextHelper Instance
        {
            get
            {
                if(_instance==null)
                {
                    lock (LockObject)
                    {
                        if(_instance==null)
                        {
                            _instance=new SynchronizationContextHelper();
                        }
                    }
                }
                return _instance;
            }
        }

        public void SendInBackground(Action<object> action, object state)
        {
            if (Application.Current==null)
                return;
            Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Background,new ParameterizedThreadStart(action), state);
        }
        public void Send(Action<object> action, object state)
        {
            _context.Send(d=>action(d), state);
        }
        public void SetContext(SynchronizationContext context)
        {
            _context = context;
        }
    }
}

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