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

27 lines
640 B
C#
Raw Normal View History

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