2024-09-16 21:38:34 +08:00
|
|
|
|
using Serein.Library.Api;
|
|
|
|
|
|
using Serein.Library.Attributes;
|
2024-09-15 12:15:32 +08:00
|
|
|
|
using Serein.Library.Entity;
|
|
|
|
|
|
using Serein.Library.Utils;
|
|
|
|
|
|
using Serein.NodeFlow;
|
|
|
|
|
|
using Serein.NodeFlow.Tool;
|
|
|
|
|
|
using Serein.WorkBench.Node.View;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Serein.WorkBench
|
|
|
|
|
|
{
|
|
|
|
|
|
public class MainWindowViewModel
|
|
|
|
|
|
{
|
|
|
|
|
|
private readonly MainWindow window ;
|
2024-09-16 21:38:34 +08:00
|
|
|
|
public IFlowEnvironment FlowEnvironment { get; set; }
|
2024-09-15 12:15:32 +08:00
|
|
|
|
public MainWindowViewModel(MainWindow window)
|
|
|
|
|
|
{
|
|
|
|
|
|
FlowEnvironment = new FlowEnvironment();
|
|
|
|
|
|
this.window = window;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|