18 lines
432 B
C#
18 lines
432 B
C#
using System.Windows;
|
|
using XP.Hardware.PLC.Sentry.ViewModels;
|
|
|
|
namespace XP.Hardware.PLC.Sentry.Views
|
|
{
|
|
/// <summary>
|
|
/// PLC Sentry Monitor 主窗口 | PLC Sentry Monitor main window
|
|
/// </summary>
|
|
public partial class SentryMainWindow : Window
|
|
{
|
|
public SentryMainWindow(SentryMainViewModel viewModel)
|
|
{
|
|
InitializeComponent();
|
|
DataContext = viewModel;
|
|
}
|
|
}
|
|
}
|