261 lines
7.9 KiB
C#
261 lines
7.9 KiB
C#
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 System.Windows.Media.Animation;
|
||
using System.Threading;
|
||
using HslCommunication;
|
||
using CommonLibrary;
|
||
using HslCommunication.BasicFramework;
|
||
using Newtonsoft.Json.Linq;
|
||
using ClientsLibrary;
|
||
using MaterialDesignThemes.Wpf;
|
||
using System.IO;
|
||
|
||
namespace 软件系统客户端Wpf
|
||
{
|
||
/// <summary>
|
||
/// LoginWindow.xaml 的交互逻辑
|
||
/// </summary>
|
||
public partial class LoginWindow : Window
|
||
{
|
||
#region Constructor
|
||
|
||
public LoginWindow()
|
||
{
|
||
InitializeComponent();
|
||
|
||
// 加载本地保存的数据
|
||
UserClient.JsonSettings.FileSavePath = AppDomain.CurrentDomain.BaseDirectory + @"JsonSettings.txt";
|
||
UserClient.JsonSettings.LoadByFile();
|
||
}
|
||
|
||
#endregion
|
||
|
||
#region Window Load
|
||
|
||
private void Window_Loaded(object sender, RoutedEventArgs e)
|
||
{
|
||
WindowToolTip.Opacity = 0;
|
||
|
||
TextBlockSoftName.Text = SoftResources.StringResouce.SoftName;
|
||
TextBlockSoftVersion.Text = UserClient.CurrentVersion.ToString();
|
||
TextBlockSoftCopyright.Text = $"本软件著作权归{CommonLibrary.SoftResources.StringResouce.SoftCopyRight}所有";
|
||
|
||
|
||
// 上次登录为7天以前则清除账户密码
|
||
if ((DateTime.Now - UserClient.JsonSettings.LoginTime).TotalDays < UserClient.JsonSettings.PasswordOverdueDays)
|
||
{
|
||
//加载数据
|
||
NameTextBox.Text = UserClient.JsonSettings.LoginName ?? "";
|
||
PasswordBox.Password = UserClient.JsonSettings.Password ?? "";
|
||
Remember.IsChecked = UserClient.JsonSettings.Password != "";
|
||
}
|
||
|
||
//初始化输入焦点
|
||
if (UserClient.JsonSettings.Password != "") LoginButton.Focus();
|
||
else if (UserClient.JsonSettings.LoginName != "") PasswordBox.Focus();
|
||
else NameTextBox.Focus();
|
||
|
||
|
||
// 加载原先保存的主题配色
|
||
if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + @"Palette.txt"))
|
||
{
|
||
using (StreamReader sr = new StreamReader(AppDomain.CurrentDomain.BaseDirectory + @"Palette.txt", Encoding.UTF8))
|
||
{
|
||
string temp = sr.ReadToEnd();
|
||
MaterialDesignThemes.Wpf.Palette obj = JObject.Parse(temp).ToObject<MaterialDesignThemes.Wpf.Palette>();
|
||
new PaletteHelper().ReplacePalette(obj);
|
||
}
|
||
}
|
||
}
|
||
|
||
#endregion
|
||
|
||
#region Login Click
|
||
|
||
|
||
private void Button_Click(object sender, RoutedEventArgs e)
|
||
{
|
||
//启动线程登录
|
||
//验证输入
|
||
if (string.IsNullOrEmpty(NameTextBox.Text))
|
||
{
|
||
SetInformationString("请输入用户名");
|
||
NameTextBox.Focus();
|
||
return;
|
||
}
|
||
|
||
if (string.IsNullOrEmpty(PasswordBox.Password))
|
||
{
|
||
SetInformationString("请输入密码");
|
||
PasswordBox.Focus();
|
||
return;
|
||
}
|
||
|
||
SetInformationString("正在验证维护状态...");
|
||
UISettings(false);
|
||
|
||
UserName = NameTextBox.Text;
|
||
UserPassword = PasswordBox.Password;
|
||
IsChecked = (bool)Remember.IsChecked;
|
||
|
||
ThreadAccountLogin = new Thread(ThreadCheckAccount);
|
||
ThreadAccountLogin.IsBackground = true;
|
||
ThreadAccountLogin.Start();
|
||
}
|
||
|
||
|
||
#endregion
|
||
|
||
#region 账户验证的逻辑块
|
||
|
||
private string UserName = string.Empty;
|
||
private string UserPassword = string.Empty;
|
||
private bool IsChecked = false;
|
||
|
||
/// <summary>
|
||
/// 用于验证的后台线程
|
||
/// </summary>
|
||
private Thread ThreadAccountLogin = null;
|
||
/// <summary>
|
||
/// 用户账户验证的后台端
|
||
/// </summary>
|
||
private void ThreadCheckAccount()
|
||
{
|
||
//定义委托
|
||
Action<string> message_show = delegate (string message)
|
||
{
|
||
Dispatcher.Invoke(new Action(() =>
|
||
{
|
||
SetInformationString(message);
|
||
}));
|
||
};
|
||
Action start_update = delegate
|
||
{
|
||
Dispatcher.Invoke(new Action(() =>
|
||
{
|
||
//需要该exe支持,否则将无法是实现自动版本控制
|
||
string update_file_name = AppDomain.CurrentDomain.BaseDirectory + @"软件自动更新.exe";
|
||
try
|
||
{
|
||
System.Diagnostics.Process.Start(update_file_name);
|
||
Environment.Exit(0);//退出系统
|
||
}
|
||
catch
|
||
{
|
||
MessageBox.Show("更新程序启动失败,请检查文件是否丢失,联系管理员获取。");
|
||
}
|
||
}));
|
||
};
|
||
Action thread_finish = delegate
|
||
{
|
||
Dispatcher.Invoke(new Action(() =>
|
||
{
|
||
UISettings(true);
|
||
}));
|
||
};
|
||
|
||
|
||
// 启动密码验证
|
||
if (AccountLogin.AccountLoginServer(
|
||
message_show,
|
||
start_update,
|
||
thread_finish,
|
||
UserName,
|
||
UserPassword,
|
||
IsChecked,
|
||
"wpf"))
|
||
{
|
||
//启动主窗口
|
||
Dispatcher.Invoke(new Action(() =>
|
||
{
|
||
DialogResult = true;
|
||
return;
|
||
}));
|
||
}
|
||
|
||
}
|
||
|
||
|
||
#endregion
|
||
|
||
#region User Interface
|
||
|
||
|
||
private void UISettings(bool enable)
|
||
{
|
||
NameTextBox.IsEnabled = enable;
|
||
PasswordBox.IsEnabled = enable;
|
||
Remember.IsEnabled = enable;
|
||
LoginButton.IsEnabled = enable;
|
||
}
|
||
|
||
private void SetInformationString(string str)
|
||
{
|
||
if (WindowToolTip.Opacity == 1)
|
||
{
|
||
DoubleAnimation hidden = new DoubleAnimation(1, 0, TimeSpan.FromMilliseconds(100));
|
||
hidden.Completed += delegate
|
||
{
|
||
DoubleAnimation show = new DoubleAnimation(0, 1, TimeSpan.FromMilliseconds(100));
|
||
WindowToolTip.Text = str;
|
||
WindowToolTip.BeginAnimation(OpacityProperty, show);
|
||
};
|
||
WindowToolTip.BeginAnimation(OpacityProperty, hidden);
|
||
}
|
||
else
|
||
{
|
||
DoubleAnimation show = new DoubleAnimation(0, 1, TimeSpan.FromMilliseconds(100));
|
||
WindowToolTip.Text = str;
|
||
WindowToolTip.BeginAnimation(OpacityProperty, show);
|
||
}
|
||
}
|
||
|
||
private void ToggleButton_Checked(object sender, RoutedEventArgs e)
|
||
{
|
||
LoginButton.Focus();
|
||
}
|
||
|
||
private void ToggleButton_Unchecked(object sender, RoutedEventArgs e)
|
||
{
|
||
LoginButton.Focus();
|
||
}
|
||
|
||
|
||
|
||
private void NameTextBox_KeyDown(object sender, KeyEventArgs e)
|
||
{
|
||
if(e.Key==Key.Enter) PasswordBox.Focus();
|
||
}
|
||
|
||
private void PasswordBox_KeyDown(object sender, KeyEventArgs e)
|
||
{
|
||
if (e.Key == Key.Enter) Button_Click(null, new RoutedEventArgs());
|
||
}
|
||
|
||
|
||
private void TextBlock_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
||
{
|
||
using (FormShowMachineId form = new FormShowMachineId())
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
#endregion
|
||
|
||
|
||
|
||
}
|
||
}
|