mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-08 02:06:40 +08:00
添加项目文件。
This commit is contained in:
23
Util.DiagramDesigner/Models/TextDesignerItem.cs
Normal file
23
Util.DiagramDesigner/Models/TextDesignerItem.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Util.DiagramDesigner;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Util.DiagramDesigner
|
||||
{
|
||||
public class TextDesignerItem : DesignerItemBase
|
||||
{
|
||||
public TextDesignerItem()
|
||||
{
|
||||
|
||||
}
|
||||
public TextDesignerItem(TextDesignerItemViewModel item) : base(item)
|
||||
{
|
||||
this.Text = item.Text;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user