mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-05 16:56:34 +08:00
项目结构调整
This commit is contained in:
20
Extensions/AIStudio.Wpf.Logical/LogicalService.cs
Normal file
20
Extensions/AIStudio.Wpf.Logical/LogicalService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AIStudio.Wpf.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