mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-10 03:30:50 +08:00
42 lines
869 B
C#
42 lines
869 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
/// <summary>
|
|
/// 完整连接点
|
|
/// </summary>
|
|
[Serializable]
|
|
[XmlInclude(typeof(LogicalConnectorInfoItem))]
|
|
public class LogicalConnectorInfoItem : FullyCreatedConnectorInfoItem
|
|
{
|
|
|
|
public LogicalConnectorInfoItem()
|
|
{
|
|
|
|
}
|
|
|
|
public LogicalConnectorInfoItem(LogicalConnectorInfo viewmodel) : base(viewmodel)
|
|
{
|
|
ValueTypePoint = viewmodel.ValueTypePoint;
|
|
ConnectorValue = viewmodel.ConnectorValue;
|
|
}
|
|
|
|
[XmlAttribute]
|
|
public ValueTypePoint ValueTypePoint
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[XmlAttribute]
|
|
public double ConnectorValue
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
|
|
|
|
}
|