예제 #1
0
 /// <summary>
 /// 关闭数组中的title的窗口
 /// </summary>
 /// <param name="titleArr"></param>
 public static void CloseWindowByTitle(string[] titleArr)
 {
     foreach (var item in titleArr)
     {
         IntPtr tipsForm = WindowFormAPI.FindWindow(null, item);
         if (tipsForm.ToInt32() > 0)
         {
             IntPtr sureBtn = WindowFormAPI.GetDlgItem(tipsForm, 2);
             if (sureBtn.ToInt32() > 0)
             {
                 WindowFormAPI.ClickByIntPtr(sureBtn);
             }
         }
     }
 }
예제 #2
0
        private static void PinCheck()
        {
            IntPtr pinForm = WindowFormAPI.FindWindow(null, "用户 PIN 码验证");

            if (pinForm.ToInt32() > 0)
            {
                IntPtr pinText = WindowFormAPI.GetDlgItem(pinForm, 1000);
                IntPtr sureBtn = WindowFormAPI.GetDlgItem(pinForm, 1);
                if (pinText.ToInt32() > 0 && sureBtn.ToInt32() > 0)
                {
                    WindowFormAPI.SendMessage(pinText, WindowFormAPI.WM_SETTEXT, IntPtr.Zero, Config.PIN);
                    WindowFormAPI.ClickByIntPtr(sureBtn);
                }
            }
        }
예제 #3
0
        /// <summary>
        /// 弹窗提示,自动操作,如弹出硬件特征码校验,自动点击提交申请。
        /// </summary>
        private void TipsCheck()
        {
            IntPtr tipsForm = WindowFormAPI.FindWindow(null, "提示信息");

            if (tipsForm.ToInt32() > 0)
            {
                IntPtr sureBtn = WindowFormAPI.GetDlgItem(tipsForm, 2);
                IntPtr tipInfo = WindowFormAPI.GetDlgItem(tipsForm, 65535);
                if (tipInfo.ToInt32() > 0)
                {
                    StringBuilder s = new StringBuilder(512);
                    int           i = WindowFormAPI.GetWindowTextW(tipInfo, s, s.Capacity);
                    if (s.ToString().Contains("密码错误"))
                    {
                        passwordError = true;
                        SetText("用户名密码错误");
                    }
                }
                if (sureBtn.ToInt32() > 0)
                {
                    WindowFormAPI.ClickByIntPtr(sureBtn);
                }
            }

            IntPtr hardwareTipsForm = WindowFormAPI.FindWindow(null, "EasyConnect");

            if (hardwareTipsForm.ToInt32() > 0)
            {
                //硬件特征码校验
                IntPtr yingjianBtn = WindowFormAPI.GetDlgItem(hardwareTipsForm, 1201);
                //提交申请ID
                IntPtr submitBtn = WindowFormAPI.GetDlgItem(hardwareTipsForm, 1274);
                if (yingjianBtn.ToInt32() > 0 && submitBtn.ToInt32() > 0)
                {
                    WindowFormAPI.ClickByIntPtr(submitBtn);
                }
            }

            IntPtr jsTips = WindowFormAPI.FindWindow(null, "脚本错误");

            if (jsTips.ToInt32() > 0)
            {
                int tmp = 0;
                WindowFormAPI.SendMessage(jsTips.ToInt32(), WindowFormAPI.WM_CLOSE, 0, ref tmp);
            }
        }
예제 #4
0
        /// <summary>
        /// pin码登陆
        /// </summary>
        public void DoLogin()
        {
            try
            {
                CloseProcess();

                Process.Start(Config.SangforCSClientPath);
                Thread.Sleep(15000);
                List <WindowInfo> list       = WindowFormAPI.GetAllDesktopWindows().ToList();
                List <WindowInfo> newwindows = list.Where(c => c.szWindowName.Contains("EasyConnect")).ToList();
                int i = 0;
                foreach (var item in newwindows)
                {
                    i++;
                    IntPtr curtab1 = WindowFormAPI.GetDlgItem(item.hWnd, 1002);
                    IntPtr curtab2 = WindowFormAPI.GetDlgItem(item.hWnd, 1086);
                    IntPtr curtab3 = WindowFormAPI.GetDlgItem(item.hWnd, 1091);
                    if (curtab1 != IntPtr.Zero && curtab2 != IntPtr.Zero && curtab3 != IntPtr.Zero)
                    {
                        WindowFormAPI.SetForegroundWindow(item.hWnd);
                        int tab1 = WindowFormAPI.FindWindowEx(item.hWnd.ToInt32(), 0, "SysTabControl32", null);
                        int tab2 = WindowFormAPI.FindWindowEx(item.hWnd.ToInt32(), 1, "SysTabControl32", null);
                        int tab3 = WindowFormAPI.FindWindowEx(item.hWnd.ToInt32(), 2, "SysTabControl32", null);
                        if (tab1 != 0)
                        {
                            IntPtr sureBtn = WindowFormAPI.GetDlgItem(item.hWnd, 1086);
                            this.SubmitBtnHandler = sureBtn;
                            if (!string.IsNullOrEmpty(Config.VPNUser) && !string.IsNullOrEmpty(Config.VPNPassword))
                            {
                                #region 解析账号密码
                                IntPtr     fatherInt       = new IntPtr(tab1);
                                List <int> childWindowList = WindowFormAPI.GetChildWindows(tab1);
                                foreach (var curitem in childWindowList)
                                {
                                    IntPtr curIntPtr = new IntPtr(curitem);
                                    int    itemId    = WindowFormAPI.GetDlgCtrlID(curIntPtr);
                                    //用户名
                                    if (itemId == 1009)
                                    {
                                        WindowFormAPI.SetForegroundWindow(item.hWnd);
                                        WindowFormAPI.SendMessage(curIntPtr, WindowFormAPI.WM_SETTEXT, IntPtr.Zero, Config.VPNUser);
                                        curEasyConnect = curIntPtr;
                                        WindowFormAPI.SetForegroundWindow(curIntPtr);
                                        curhWnd = item.hWnd;
                                        MoveLeftTopSide();
                                        continue;
                                    }
                                    //密码
                                    if (itemId == 1010)
                                    {
                                        WindowFormAPI.SetForegroundWindow(item.hWnd);
                                        WindowFormAPI.SendMessage(curIntPtr, WindowFormAPI.WM_SETTEXT, IntPtr.Zero, Config.VPNPassword);
                                        MoveLeftTopSide();
                                        continue;
                                    }
                                    //验证码-输入文本框
                                    if (itemId == 1011)
                                    {
                                        WindowFormAPI.SetForegroundWindow(item.hWnd);
                                        MoveLeftTopSide();
                                        this.imgCodeTextHandler = curIntPtr;
                                        continue;
                                    }
                                    //验证码-图片
                                    if (itemId == 1022)
                                    {
                                        WindowFormAPI.SetForegroundWindow(item.hWnd);
                                        this.imgCodeHandler = curIntPtr;
                                        MoveLeftTopSide();
                                        continue;
                                    }
                                    //验证码切换
                                    if (itemId == 1023)
                                    {
                                        WindowFormAPI.SetForegroundWindow(item.hWnd);
                                        this.changeImgCodeBtnHandler = curIntPtr;
                                        MoveLeftTopSide();
                                        continue;
                                    }
                                }
                                #endregion
                            }
                            Submit();
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                SetText(ex.Message);
            }
        }