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