mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
30 lines
779 B
C#
30 lines
779 B
C#
|
|
using Avalonia.Controls;
|
|||
|
|
using Serein.Library.Api;
|
|||
|
|
using Serein.NodeFlow.Env;
|
|||
|
|
using Serein.Workbench.Avalonia.ViewModels;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Serein.Workbench.Avalonia.Custom.ViewModels
|
|||
|
|
{
|
|||
|
|
internal class NodeContainerViewModel : ViewModelBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 正在创建方法调用关系的连接线
|
|||
|
|
/// </summary>
|
|||
|
|
public bool IsConnectionInvokeNode { get; set; } = false;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 正在创建参数传递关系的连接线
|
|||
|
|
/// </summary>
|
|||
|
|
public bool IsConnectionArgSourceNode { get; set; } = false;
|
|||
|
|
public NodeContainerViewModel()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|