mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-01 22:56:35 +08:00
do redo
This commit is contained in:
@@ -124,12 +124,12 @@ namespace AIStudio.Wpf.Mind.Models
|
||||
|
||||
public LinkInfoItem(LinkInfo linkinfo)
|
||||
{
|
||||
Link = linkinfo.Link;
|
||||
Url = linkinfo.Url;
|
||||
Text = linkinfo.Text;
|
||||
}
|
||||
|
||||
[XmlAttribute]
|
||||
public string Link
|
||||
public string Url
|
||||
{
|
||||
get;set;
|
||||
}
|
||||
|
||||
@@ -69,8 +69,8 @@ namespace AIStudio.Wpf.Flowchart.Models
|
||||
mindNode.Spacing = Spacing;
|
||||
mindNode.Offset = Offset;
|
||||
mindNode.IsExpanded = IsExpanded;
|
||||
mindNode.LinkInfo = new LinkInfo(){Link = LinkInfoModel?.Link, Text= LinkInfoModel?.Text};
|
||||
mindNode.ImageInfo = new ImageInfo() { Url= ImageInfoModel?.Url, Text= ImageInfoModel?.Text };
|
||||
mindNode.LinkInfo = new LinkInfo(LinkInfoModel?.Url, LinkInfoModel?.Text);
|
||||
mindNode.ImageInfo = new ImageInfo(ImageInfoModel?.Url, ImageInfoModel?.Text);
|
||||
mindNode.Remark = Remark;
|
||||
mindNode.Priority = Priority;
|
||||
mindNode.Rate = Rate;
|
||||
@@ -95,11 +95,11 @@ namespace AIStudio.Wpf.Flowchart.Models
|
||||
|
||||
public LinkInfoModel(LinkInfo linkinfo)
|
||||
{
|
||||
Link = linkinfo.Link;
|
||||
Url = linkinfo.Url;
|
||||
Text = linkinfo.Text;
|
||||
}
|
||||
|
||||
public string Link
|
||||
public string Url
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user