mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
21 lines
509 B
C#
21 lines
509 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace AIStudio.Wpf.DiagramDesigner.Demo.ViewModels
|
|||
|
|
{
|
|||
|
|
class SimpleViewModel : BindableBase
|
|||
|
|
{
|
|||
|
|
public DiagramViewModel DiagramViewModel
|
|||
|
|
{
|
|||
|
|
get; private set;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public SimpleViewModel()
|
|||
|
|
{
|
|||
|
|
//DesignerItemViewModelBase timer = new TimerDesignerItemViewModel() { Left = 0, Top = 10 };
|
|||
|
|
//DiagramViewModel.DirectAddItemCommand.Execute(timer);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|