19 lines
413 B
C#
19 lines
413 B
C#
namespace Sunny.UI.Demo
|
|
{
|
|
public partial class FLogin : UILoginForm
|
|
{
|
|
public FLogin()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void FLogin_ButtonLoginClick(object sender, System.EventArgs e)
|
|
{
|
|
if (UserName == "admin" && Password == "admin")
|
|
{
|
|
IsLogin = true;
|
|
Close();
|
|
}
|
|
}
|
|
}
|
|
} |