就是这个部位。 private static IHTMLDocument2 GetHtmlDocument(IntPtr hWnd)
        {
            uint lMsg = RegisterWindowMessage("WM_HTML_GETOBJECT");
            UIntPtr lRes;
            SendMessageTimeout(hWnd, lMsg, IntPtr.Zero, IntPtr.Zero, SendMessageTimeoutFlags.SMTO_ABORTIFHUNG, 1000, out lRes);
            IHTMLDocument2 htmlDoc = null;
            if (lRes != UIntPtr.Zero)
                htmlDoc = (IHTMLDocument2)ObjectFromLresult(lRes, typeof(IHTMLDocument2).GUID, IntPtr.Zero);
            return htmlDoc;
        }        public static string GetWebText(IntPtr hWnd)
        {
            IHTMLDocument2 htmlDoc = GetHtmlDocument(hWnd);
            if (htmlDoc != null)
                return htmlDoc.body.innerHTML;
            else
                return string.Empty;
        }这个类我用上了,可是能取到家族,找朋友选项卡的源代码,取不到玩家列表的任何信息。
请高手给个思路。