Files
2023-05-01 00:10:55 +08:00

47 lines
799 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IAnimationViewModel
{
LineAnimation Animation
{
get; set;
}
double Duration
{
get; set;
}
Color Color
{
get; set;
}
ISharpPath AnimationPath
{
get; set;
}
bool Repeat
{
get; set;
}
bool Start
{
get; set;
}
int Completed
{
get; set;
}
event PropertyChangedEventHandler PropertyChanged;
}
}