Files
TickerLib/Animation/TaggedDoubleAnimation.cs
2024-02-23 06:55:00 -05:00

14 lines
350 B
C#

using System.Windows;
using System.Windows.Media.Animation;
namespace Ticker.Animation
{
public class TaggedDoubleAnimation : DoubleAnimation
{
public FrameworkElement TargetElement { get; set; }
protected override Freezable CreateInstanceCore()
{
return new TaggedDoubleAnimation{TargetElement = TargetElement};
}
}
}