Mercurial > silverbladetech
view MetroWpf/MetroWpf.Xaml/Transitions/TransitionSelector.cs @ 105:1c9fc59af186
Removing old files
author | stevenhollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sun, 06 May 2012 12:32:35 +0100 |
parents | a8b50a087544 |
children |
line wrap: on
line source
using System.Windows; namespace MetroWpf.Xaml.Transitions { // Allows different transitions to run based on the old and new contents // Override the SelectTransition method to return the transition to apply public class TransitionSelector : DependencyObject { public virtual Transition SelectTransition(object oldContent, object newContent) { return null; } } }