Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Windows.Media.Animation.Timeline.cs « PresentationCore « FPF « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c7aaf462d81221aae876bebdf6f8416803b9586 (plain)
1
2
3
4
5
6
7
8
9
10
namespace System.Windows.Media.Animation
{
	public abstract class Timeline  : System.Windows.Media.Animation.Animatable
	{

		public event System.EventHandler Completed;
		public System.Windows.Media.Animation.RepeatBehavior RepeatBehavior { set {  throw new System.NotImplementedException(); } }

	}
}