Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/Models/Serializables/DesignerItemBase.cs
2023-02-11 23:51:48 +08:00

109 lines
2.3 KiB
C#

using AIStudio.Wpf.DiagramDesigner;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
using System.Xml.Serialization;
namespace AIStudio.Wpf.DiagramDesigner
{
[Serializable]
[XmlInclude(typeof(DesignerItemBase))]
public class DesignerItemBase : SelectableItemBase
{
public DesignerItemBase()
{
}
public DesignerItemBase(DesignerItemViewModelBase viewmodel, string reserve = null) : base(viewmodel)
{
this.PhysicalLeft = viewmodel.PhysicalLeft;
this.PhysicalTop = viewmodel.PhysicalTop;
this.Angle = viewmodel.Angle;
this.ScaleX = viewmodel.ScaleX;
this.ScaleY = viewmodel.ScaleY;
this.PhysicalItemWidth = viewmodel.PhysicalItemWidth;
this.PhysicalItemHeight = viewmodel.PhysicalItemHeight;
this.Icon = viewmodel.Icon;
this.ItemTypeName = viewmodel.GetType().FullName;
this.Margin = viewmodel.Margin;
this.Reserve = reserve;
}
[XmlAttribute("Left")]
public double PhysicalLeft
{
get; set;
}
[XmlAttribute("Top")]
public double PhysicalTop
{
get; set;
}
[XmlAttribute]
public double Angle
{
get; set;
}
[XmlAttribute]
public double ScaleX
{
get; set;
}
[XmlAttribute]
public double ScaleY
{
get; set;
}
[XmlAttribute]
public double Margin
{
get; set;
}
[JsonProperty(PropertyName = "ItemWidth")]
[XmlAttribute("ItemWidth")]
public double PhysicalItemWidth
{
get; set;
}
[JsonProperty(PropertyName = "ItemHeight")]
[XmlAttribute("ItemHeight")]
public double PhysicalItemHeight
{
get; set;
}
[XmlAttribute]
public string Icon
{
get; set;
}
[XmlAttribute]
public string Reserve
{
get; set;
}
[XmlAttribute]
public string ItemTypeName
{
get; set;
}
}
}