内部连接点示例

This commit is contained in:
艾竹
2023-02-04 16:38:56 +08:00
parent 0d6debe87f
commit e8f91abd68
12 changed files with 153 additions and 21 deletions

View File

@@ -150,6 +150,19 @@ namespace AIStudio.Wpf.DiagramDesigner
SetProperty(ref _lineAnimation, value);
}
}
private double _lineAnimationDuration = 1;
public double LineAnimationDuration
{
get
{
return _lineAnimationDuration;
}
set
{
SetProperty(ref _lineAnimationDuration, value);
}
}
}

View File

@@ -33,6 +33,10 @@ namespace AIStudio.Wpf.DiagramDesigner
{
get; set;
}
double LineAnimationDuration
{
get; set;
}
event PropertyChangedEventHandler PropertyChanged;
}
}