2022-11-30 19:07:40 +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;
|
|
|
|
|
|
|
2023-01-25 15:21:20 +08:00
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner.Demo.Views
|
2022-11-30 19:07:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2023-01-25 15:21:20 +08:00
|
|
|
|
/// DragAndDropView.xaml 的交互逻辑
|
2022-11-30 19:07:40 +08:00
|
|
|
|
/// </summary>
|
2023-01-25 15:21:20 +08:00
|
|
|
|
public partial class DragAndDropView : UserControl
|
2022-11-30 19:07:40 +08:00
|
|
|
|
{
|
2023-01-25 15:21:20 +08:00
|
|
|
|
public DragAndDropView()
|
2022-11-30 19:07:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|