Files

18 lines
350 B
C#
Raw Permalink Normal View History

2023-01-23 22:05:51 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace AIStudio.Wpf.DiagramDesigner
{
public enum LineAnimation
{
[Description("无")]
None,
[Description("路径动画")]
PathAnimation,
[Description("虚线流动")]
DashAnimation,
}
}