mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
19 lines
432 B
C#
19 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
using AIStudio.Wpf.Block.Core.ViewModels;
|
|
|
|
namespace AIStudio.Wpf.Block
|
|
{
|
|
public class BlockTest
|
|
{
|
|
public BlockTest()
|
|
{
|
|
BlockDesignerItemViewModel MoveNode = new MoveNode() { Name = nameof(MoveNode), Left = 28, Top = 28 };
|
|
}
|
|
}
|
|
}
|