Interface ITransition
Represents an entity able to perform animation transitions
Namespace: GraphShape.Controls
Assembly: GraphShape.Controls.dll
Syntax
public interface ITransition
Methods
| Improve this Doc View SourceRun(IAnimationContext, Control, TimeSpan, Action<Control>)
Runs the transition.
Declaration
void Run(IAnimationContext context, Control control, TimeSpan duration, Action<Control> endAction)
Parameters
Type | Name | Description |
---|---|---|
IAnimationContext | context | The context of the transition. |
Control | control | The control which the transition should be run on. |
TimeSpan | duration | The duration of the transition. |
Action<Control> | endAction | The method that should be called when the transition finished. |