1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.4 KiB
C#

using HighWayIot.Repository.domain;
using HighWayIot.Repository.service;
using HighWayIot.Winform.Business;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HighWayIot.Winform.MainForm
{
public partial class LoginForm : Form
{
SysUserInfoService sysUserInfoService = new SysUserInfoService();
public LoginForm()
{
InitializeComponent();
}
/// <summary>
/// 登陆验证
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Login_Click(object sender, EventArgs e)
{
//验证账号密码,或从数据库验证成功
var lists = sysUserInfoService.GetUserInfoByUserName(UserText.Text);
if (lists.Count == 1 && lists.First().Password == PassText.Text)
{
lists.First().LastLoginTime = DateTime.Now;
RoleBusiness.LoginUserName = UserText.Text;
sysUserInfoService.UpdateUserInfo(lists.First());
DialogResult = DialogResult.OK;
this.Close();
}
else
{
MessageBox.Show("账号或密码错误!");
return;
}
}
}
}