修复流程图编辑器界面及初步的功能

This commit is contained in:
zhengxuan.zhang
2026-04-20 11:07:00 +08:00
parent b16d592087
commit 1c6c2ac675
19 changed files with 363 additions and 32 deletions
@@ -1,4 +1,7 @@
using Prism.Ioc;
using System;
using System.Windows;
using XplorePlane.ViewModels;
namespace XplorePlane.Views
{
@@ -7,6 +10,15 @@ namespace XplorePlane.Views
public PipelineEditorWindow()
{
InitializeComponent();
try
{
DataContext = ContainerLocator.Current?.Resolve<PipelineEditorViewModel>();
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex);
}
}
}
}
}