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.

46 lines
915 B
C#

using System;
3 weeks ago
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HighWayIot.Winform.MainForm
{
public partial class LoginForm : Form
{
public LoginForm()
{
InitializeComponent();
}
/// <summary>
/// 登陆验证
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Login_Click(object sender, EventArgs e)
{
3 weeks ago
}
/// <summary>
/// 自动登录
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void LoginForm_Load(object sender, EventArgs e)
{
3 weeks ago
}
}
}