duheng
2025-03-07 dc32142ecf8512d499f3fd44d80f97b012e16d4f
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 PBS.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;
        }
 
 
 
 
    }
}