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

30 lines
738 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>
/// Interaction logic for ToolBoxControl.xaml
/// </summary>
public partial class ToolBoxControl : UserControl
{
public ToolBoxControl()
{
InitializeComponent();
2022-12-02 23:06:31 +08:00
this.DataContext = new ToolBoxViewModel();
2022-11-30 19:07:40 +08:00
}
}
}