mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-05-03 14:31:28 +08:00
添加项目文件。
This commit is contained in:
23
AIStudio.Wpf.ADiagram/Demos/Logical/LogicalService.cs
Normal file
23
AIStudio.Wpf.ADiagram/Demos/Logical/LogicalService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AIStudio.Wpf.ADiagram.Demos.Logical
|
||||
{
|
||||
public static class LogicalService
|
||||
{
|
||||
public static List<LinkPoint> LinkPoint { get; set; }
|
||||
|
||||
static LogicalService()
|
||||
{
|
||||
LinkPoint = new List<LinkPoint>();
|
||||
for (int i = 0; i < 10; i++)
|
||||
{
|
||||
LinkPoint.Add(new Logical.LinkPoint { Id = Guid.NewGuid(), Name = $"测点{i}", Value = i });
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user