Files
aistudio-wpf-diagram/Extensions/AIStudio.Wpf.Flowchart/Controls/FlowchartToolBoxControl.xaml.cs

30 lines
774 B
C#
Raw Normal View History

2022-11-30 19:07:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
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;
2022-12-02 23:06:31 +08:00
using AIStudio.Wpf.Flowchart.ViewModels;
2022-11-30 19:07:40 +08:00
2022-12-02 23:06:31 +08:00
namespace AIStudio.Wpf.Flowchart.Controls
2022-11-30 19:07:40 +08:00
{
/// <summary>
2023-04-18 22:38:20 +08:00
/// Interaction logic for FlowchartToolBoxControl.xaml
2022-11-30 19:07:40 +08:00
/// </summary>
2023-04-18 22:38:20 +08:00
public partial class FlowchartToolBoxControl : UserControl
2022-11-30 19:07:40 +08:00
{
2023-04-18 22:38:20 +08:00
public FlowchartToolBoxControl()
2022-11-30 19:07:40 +08:00
{
InitializeComponent();
2023-04-18 22:38:20 +08:00
this.DataContext = new FlowchartToolBoxViewModel();
2022-11-30 19:07:40 +08:00
}
}
}