Click here to Skip to main content
15,896,063 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;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;

namespace MefBasic.Behaviors
{
    public class DoubleClickBehavior 
    {
        private const string CommandName = "Command";
        private const string CommandParameterName = "CommandParameter";

        public static DependencyProperty CommandProperty =
            DependencyProperty.RegisterAttached(CommandName, typeof (ICommand), typeof (DoubleClickBehavior), new UIPropertyMetadata(OnPropertyChanged));

        public static void SetCommand(DependencyObject target, ICommand value)
        {
            target.SetValue(CommandProperty, value);
        }

        public static DependencyProperty CommandParameterProperty =
            DependencyProperty.RegisterAttached(CommandParameterName, typeof(object), typeof(DoubleClickBehavior), new UIPropertyMetadata(OnPropertyChanged));

        public static void SetCommandParameter(DependencyObject target, object value)
        {
            target.SetValue(CommandParameterProperty, value);
        }

        /// <exception cref="InvalidOperationException">This behavior can be attached to Control item only.</exception>
        private static void OnPropertyChanged(DependencyObject target, DependencyPropertyChangedEventArgs e)
        {
            var element = target as Control;
            if (element == null)
                throw new InvalidOperationException("This behavior can be attached to Control item only.");
            switch (e.Property.Name)
            {
                case CommandName:
                    SubscribeOrUnsubscribeEvent(element, e);
                    break;
            }
        }

        private static void SubscribeOrUnsubscribeEvent(Control element, DependencyPropertyChangedEventArgs e)
        {
            if ((e.NewValue != null) && (e.OldValue == null))
            {
                element.MouseDoubleClick += HandleEvent;
            }
            else if ((e.NewValue == null) && (e.OldValue != null))
            {
                element.MouseDoubleClick -= HandleEvent;
            }
        }

        private static void HandleEvent(object sender, MouseButtonEventArgs mouseButtonEventArgs)
        {
            var element = (Control) sender;
            var command = (ICommand) element.GetValue(CommandProperty);
            var commandParameter = element.GetValue(CommandParameterProperty);
            command.Execute(commandParameter);
        }
    }
}

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