20211124_ZNZT_upperpc/MonitoringTechnology/Views/FirstPageView.xaml.cs

32 lines
829 B
C#
Raw Normal View History

2023-02-03 00:31:48 +00:00
using MonitoringTechnology.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 MonitoringTechnology.Views
{
/// <summary>
2023-07-21 07:13:11 +00:00
/// FirstPageView.xaml 的交互逻辑333
2023-02-03 00:31:48 +00:00
/// </summary>
public partial class FirstPageView : UserControl
{
public static FirstPageViewModel firstPageView = new FirstPageViewModel();
public FirstPageView()
{
InitializeComponent();
this.DataContext = firstPageView;
}
}
}