21 lines
427 B
C#
Raw Normal View History

2020-06-20 21:00:15 +08:00
using System;
namespace Sunny.UI.Demo.Forms
{
public partial class FLogin : UILoginForm
{
public FLogin()
{
InitializeComponent();
}
private void FLogin_ButtonLoginClick(object sender, EventArgs e)
{
if (UserName == "admin" && Password == "admin")
{
IsLogin = true;
Close();
}
}
}
}