20 lines
468 B
C#
Raw Normal View History

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();
}
private void FLogin_ButtonLoginClick(object sender, System.EventArgs e)
2020-06-20 21:00:15 +08:00
{
this.ShowInfoTip("DSFSDF");
// if (UserName == "admin" && Password == "admin")
// {
// IsLogin = true;
// Close();
// }
2020-06-20 21:00:15 +08:00
}
}
}