tangxu
2024-06-19 9cfdf165b8364eb8d5614fa6b86258ffd717ab29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace HStation.Desktop
{
    /// <summary>
    /// 登录辅助类
    /// </summary>
    public class LoginHelper
    {
 
        public bool Login()
        {
            var dlg = new LoginFrm();
            if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                return true;
            return false;
        }
 
 
 
 
    }
}