线条动画支持大小切换

This commit is contained in:
艾竹
2023-04-29 18:36:50 +08:00
parent f4268b9fc2
commit 4a3f278a97
30 changed files with 1095 additions and 317 deletions

View File

@@ -10,7 +10,7 @@ namespace AIStudio.Wpf.DiagramDesigner
{
public interface IAnimationViewModel
{
LineAnimation LineAnimation
LineAnimation Animation
{
get; set;
}
@@ -22,15 +22,7 @@ namespace AIStudio.Wpf.DiagramDesigner
{
get; set;
}
string Path
{
get; set;
}
double Width
{
get; set;
}
double Height
ISharpPath AnimationPath
{
get; set;
}

View File

@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface ISharpPath
{
string Path
{
get; set;
}
double Width
{
get; set;
}
double Height
{
get; set;
}
PathStyle PathStyle
{
get; set;
}
SizeStyle SizeStyle
{
get; set;
}
}
}