mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-04-04 07:16:35 +08:00
优化了Workbench上的操作。
This commit is contained in:
33
Workbench/Views/ViewNodeInfoView.xaml.cs
Normal file
33
Workbench/Views/ViewNodeInfoView.xaml.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using Serein.Workbench.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
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;
|
||||
|
||||
namespace Serein.Workbench.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// NodeInfoView.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class ViewNodeInfoView : UserControl
|
||||
{
|
||||
private readonly ViewNodeInfoViewModel ViewModel;
|
||||
public ViewNodeInfoView()
|
||||
{
|
||||
|
||||
ViewModel = App.GetService<Locator>().NodeInfoViewModel;
|
||||
this.DataContext = ViewModel;
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user