forked from wenjy/HighWayIot
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.
48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using HighWayIot.Repository.domain;
|
|
using HighWayIot.Repository.service;
|
|
using HighWayIot.Repository.service.Impl;
|
|
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
|
|
{
|
|
ISysUserInfoService sysUserInfoService = new BaseSysUserInfoServiceImpl();
|
|
|
|
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)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
this.Close();
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show("账号或密码错误!");
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|