25 lines
530 B
C#
25 lines
530 B
C#
using Prism.Ioc;
|
|
using System;
|
|
using System.Windows;
|
|
using XplorePlane.ViewModels;
|
|
|
|
namespace XplorePlane.Views
|
|
{
|
|
public partial class PipelineEditorWindow : Window
|
|
{
|
|
public PipelineEditorWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
try
|
|
{
|
|
DataContext = ContainerLocator.Current?.Resolve<PipelineEditorViewModel>();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
System.Diagnostics.Debug.WriteLine(ex);
|
|
}
|
|
}
|
|
}
|
|
}
|