mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
18 lines
380 B
C#
18 lines
380 B
C#
using System.Windows;
|
|
|
|
namespace DragablzDemo
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for BasicExampleMainWindow.xaml
|
|
/// </summary>
|
|
public partial class BasicExampleMainWindow : Window
|
|
{
|
|
public BasicExampleMainWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
DataContext = new BasicExampleMainModel();
|
|
}
|
|
}
|
|
}
|