Init
This commit is contained in:
14
Animation/TaggedDoubleAnimation.cs
Normal file
14
Animation/TaggedDoubleAnimation.cs
Normal 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};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user