Files
aistudio-wpf-diagram/Util.DiagramDesigner/ViewModels/PartCreatedConnectionInfo.cs
2021-07-23 09:42:22 +08:00

19 lines
452 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
namespace Util.DiagramDesigner
{
public class PartCreatedConnectionInfo : ConnectorInfoBase
{
public Point CurrentLocation { get; private set; }
public PartCreatedConnectionInfo(Point currentLocation) : base(ConnectorOrientation.None)
{
this.CurrentLocation = currentLocation;
}
}
}