AutomationElement.FromHandle(IntPtr Handle)停止应用程序

时间:2014-09-06 09:43:16

标签: c# .net automationelement

private string GetCurrentChromeUrl()
    {
        try
        {
            string url = null;

            int handle = GetForegroundWindow();
            AutomationElement elm = AutomationElement.FromHandle((IntPtr)handle);
            AutomationElement elmUrlBar = elm.FindFirst(TreeScope.Descendants,
                  new PropertyCondition(AutomationElement.NameProperty, "Address and search bar"));
            if (elmUrlBar != null)
            {
                AutomationPattern[] patterns = elmUrlBar.GetSupportedPatterns();
                if (patterns.Length > 0)
                {
                    ValuePattern val = (ValuePattern)elmUrlBar.GetCurrentPattern(patterns[0]);
                    url = val.Current.Value;
                    //break;
                }
            }
            return url;
        }
        catch (Exception e1)
        {
            return "";
        }
   }

我正在尝试从Google Chrome浏览器中找到该网址。

我正在使用上面的代码。它在其他应用程序中运行良好,但在我的情况下,它会停止我的应用程序。

但主要的问题是它在我调试它时会正常工作,所以没有调试时会出错。

请提供解决方案。

提前

thanx

1 个答案:

答案 0 :(得分:1)

我正在经历这个,它是intptr类型的原因,它取决于机器的构建,有时对于32位机器的intptr来说,窗口句柄太大。