准备添加中间端点

This commit is contained in:
艾竹
2023-01-15 11:59:51 +08:00
parent 717cc43827
commit 7d77864311
19 changed files with 1440 additions and 117 deletions

View File

@@ -11,7 +11,11 @@ namespace AIStudio.Wpf.DiagramDesigner
{
if (value is ArrowPathStyle arrowStyle)
{
return ArrowPathData.Arrow[(int)arrowStyle];
return ArrowPathData.Arrow[arrowStyle];
}
else if (value is string)
{
return value;
}
return null;
}