在webbrowser控件中查找控件的位置

时间:2012-02-02 06:55:48

标签: c# winforms

我在窗口应用程序中工作。我想对我的应用程序中的webbrowser控件中打开的网页上的任何控件的悬停执行一些操作。请建议我该怎么做。实际上我想读出有针对性的控制文本,但对此却一无所知。请提供一些有用的提示和技巧。

1 个答案:

答案 0 :(得分:0)

赢取应用? 你可以尝试下面的控制obj

private void Form1_MouseMove(object sender,MouseEventArgs e)

    {
        //this.Capture = true;   
        Control cc = this.GetChildAtPoint( new Point(e.X, e.Y ) );
        if (cc != null)
            this.Text = cc.Text;
    }

如果你想获得其他应用程序的obj http://www.builder.com.cn/2007/1020/568176.shtml