public void Show() { state = ElementState.Showing; OutAnimation?.Reset(); SaveProperties(); InAnimation?.Play(false); InAnimation?.Apply(ref props); }
public void Reset() { state = ElementState.Idle; InAnimation?.Reset(); OutAnimation?.Reset(); InAnimation?.Apply(ref props); OutAnimation?.Apply(ref props); SaveProperties(); }