Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner.Demo/Views/Customization/CustomNodeView.xaml.cs

27 lines
625 B
C#
Raw Normal View History

2023-01-25 23:55:30 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace AIStudio.Wpf.DiagramDesigner.Demo.Views
{
/// <summary>
/// CustomNodeView.xaml 的交互逻辑
/// </summary>
public partial class CustomNodeView : UserControl
{
public CustomNodeView()
{
InitializeComponent();
}
}
}