This commit is contained in:
艾竹
2023-03-10 12:09:13 +08:00
parent e4f6335224
commit b3c7e1efec
20 changed files with 442 additions and 255 deletions

View File

@@ -147,6 +147,19 @@ namespace AIStudio.Wpf.DiagramDesigner
}
}
public PointBase Ratio
{
get
{
return new PointBase(XRatio, YRatio);
}
set
{
XRatio = value.X;
YRatio = value.Y;
}
}
public bool IsInnerPoint
{
get; set;