mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-11 20:19:26 +08:00
18 lines
350 B
C#
18 lines
350 B
C#
|
|
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,
|
|||
|
|
}
|
|||
|
|
}
|