private void rbtnLogin_Click(object sender, EventArgs e) {//确定按钮 if (string.IsNullOrWhiteSpace(tboxPasswd.Text) || string.IsNullOrWhiteSpace(tboxUsername.Text)) { MessageBox.Show("请输入用户名或者密码"); return; } // 检查是否输入了用户名和密码 try { _fDataModule.SetUserID(tboxUsername.Text); _fDataModule.SetPasswd(tboxPasswd.Text); _fDataModule.SetUp(Properties.Settings.Default.ServerUrl); isLogin = _fDataModule.login();//保存登录结果 } catch (Exception exception) { MessageBox.Show("啊哦,服务器提出了一个问题:\n" + exception.Message); return; } if (isLogin) { Hide(); } else { MessageBox.Show("登录失败"); } }