mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-06-07 18:38:21 +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();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|