2020-06-20 21:37:38 +08:00
|
|
|
|
namespace Sunny.UI.Demo.Forms
|
2020-06-20 21:00:15 +08:00
|
|
|
|
{
|
|
|
|
|
public partial class FLogin : UILoginForm
|
|
|
|
|
{
|
|
|
|
|
public FLogin()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-20 21:37:38 +08:00
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|