Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/ViewModels/BaseViewModel/GroupDesignerItemViewModel.cs

39 lines
791 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2022-10-28 22:45:39 +08:00
using AIStudio.Wpf.DiagramDesigner;
2021-07-23 09:42:22 +08:00
2022-10-28 22:45:39 +08:00
namespace AIStudio.Wpf.DiagramDesigner
2021-07-23 09:42:22 +08:00
{
public class GroupDesignerItemViewModel : DesignerItemViewModelBase
{
2023-01-27 14:54:03 +08:00
public GroupDesignerItemViewModel() : this(null)
{
}
public GroupDesignerItemViewModel(IDiagramViewModel root) : base(root)
2021-07-23 09:42:22 +08:00
{
}
2023-01-27 14:54:03 +08:00
protected override void Init(IDiagramViewModel root)
{
2023-01-27 14:54:03 +08:00
base.Init(root);
2023-01-27 21:29:42 +08:00
this.IsHitTestVisible = true;
2021-07-23 09:42:22 +08:00
}
protected override void InitConnector()
{
}
2021-07-23 09:42:22 +08:00
protected override void ExecuteEditCommand(object param)
{
}
}
}