I have user control with property
public double X
{
get
{
return Canvas.GetLeft(this) + this.Radius;
}
set
{
Canvas.SetLeft(this, value - this.Radius);
PropertyChanged(this, new PropertyChangedEventArgs("X"));
}
}
I want to use animation related with this property but animation require only dependency property. How i can resolve this problem ?