Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/ViewModels/AdditionViewModel/Interface/IAnimationViewModel.cs

47 lines
799 B
C#
Raw Normal View History

2023-04-29 15:29:22 +08:00
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
{
2023-04-29 18:36:50 +08:00
LineAnimation Animation
2023-04-29 15:29:22 +08:00
{
get; set;
}
double Duration
{
get; set;
}
Color Color
{
get; set;
}
2023-04-29 18:36:50 +08:00
ISharpPath AnimationPath
2023-04-29 15:29:22 +08:00
{
get; set;
}
2023-05-01 00:10:55 +08:00
bool Repeat
{
get; set;
}
bool Start
{
get; set;
}
int Completed
{
get; set;
}
2023-04-29 15:29:22 +08:00
event PropertyChangedEventHandler PropertyChanged;
}
}