mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
支持动画使用不同的形状
This commit is contained in:
@@ -79,6 +79,37 @@ namespace AIStudio.Wpf.DiagramDesigner
|
||||
}
|
||||
}
|
||||
|
||||
private bool _repeat = true;
|
||||
public bool Repeat
|
||||
{
|
||||
get
|
||||
{
|
||||
return _repeat;
|
||||
}
|
||||
set
|
||||
{
|
||||
SetProperty(ref _repeat, value);
|
||||
}
|
||||
}
|
||||
|
||||
private bool _start;
|
||||
public bool Start
|
||||
{
|
||||
get
|
||||
{
|
||||
return _start;
|
||||
}
|
||||
set
|
||||
{
|
||||
SetProperty(ref _start, value);
|
||||
}
|
||||
}
|
||||
|
||||
public int Completed
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
private void AnimationViewModel_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
|
||||
{
|
||||
if (sender == AnimationPath)
|
||||
|
||||
Reference in New Issue
Block a user