SOMS/test/守护程序/WPF/WatchDogWindow.xaml.cs

28 lines
631 B
C#
Raw Normal View History

2024-07-15 10:31:26 +08:00
using System;
using System.Collections.Generic;
using System.Text;
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.Shapes;
namespace WatchDogWindowApp.WPF
{
/// <summary>
/// WatchDogWindow.xaml 的交互逻辑
/// </summary>
public partial class WatchDogWindow : Window
{
public WatchDogWindow()
{
InitializeComponent();
this.DataContext = new ListsAndGridsViewModel();
}
}
}