1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- namespace Microsoft.Windows.Forms.Animate
- {
-
-
-
-
- public interface IAnimation<T>
- {
-
-
-
- bool Stopped
- {
- get;
- }
-
-
-
- DateTime StartTime
- {
- get;
- }
-
-
-
- int Span
- {
- get;
- set;
- }
-
-
-
- T Current
- {
- get;
- }
- }
- }
|