19 lines
419 B
C#
Raw Normal View History

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