箭头位置,指向连接点的中心

This commit is contained in:
艾竹
2023-01-15 22:17:46 +08:00
parent 5bdf10445f
commit 718d8c01e9
9 changed files with 102 additions and 28 deletions

View File

@@ -201,6 +201,22 @@ namespace AIStudio.Wpf.DiagramDesigner
}
}
}
public double LeftArrowSize
{
get
{
return LeftArrowPathStyle == ArrowPathStyle.None ? 0d : (double)LeftArrowSizeStyle;
}
}
public double RightArrowSize
{
get
{
return RightArrowPathStyle == ArrowPathStyle.None ? 0d : (double)RightArrowSizeStyle;
}
}
}