namespace HStation.Desktop { /// /// 登录辅助类 /// public class LoginHelper { public bool Login() { var dlg = new LoginFrm(); if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK) return true; return false; } } }