38 lines
780 B
C#
38 lines
780 B
C#
using MaterialDesignColors;
|
|
using Prism.Events;
|
|
using Prism.Ioc;
|
|
using Prism.Regions;
|
|
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.Shapes;
|
|
using DM_Weight.msg;
|
|
using DM_Weight.util;
|
|
using DM_Weight.ViewModels;
|
|
|
|
namespace DM_Weight.Views
|
|
{
|
|
/// <summary>
|
|
/// LoginWindow.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class LoginWindow : UserControl
|
|
{
|
|
|
|
public LoginWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
}
|
|
}
|