2020-06-26 16:22:14 +08:00
|
|
|
|
namespace Sunny.UI.Demo
|
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
|
|
|
|
{
|
2020-07-12 12:28:10 +08:00
|
|
|
|
this.ShowInfoTip("DSFSDF");
|
|
|
|
|
// if (UserName == "admin" && Password == "admin")
|
|
|
|
|
// {
|
|
|
|
|
// IsLogin = true;
|
|
|
|
|
// Close();
|
|
|
|
|
// }
|
2020-06-20 21:00:15 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|