This commit is contained in:
2024-02-23 06:55:00 -05:00
commit 277fc69c11
12 changed files with 1073 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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};
}
}
}