基本信息
源码名称:SendMessage模拟鼠标单击事件(在webbrowser网页实现) 实例完整源码
源码大小:0.04M
文件格式:.zip
开发语言:C#
更新时间:2013-04-04
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
一个利用winapi模拟鼠标单击webbrowser中网页实例
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Windows.Forms; namespace WebBrowser_SendMessage { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnMoNiClick_Click(object sender, EventArgs e) { MoNiMouseClick(); } private void Form1_Load(object sender, EventArgs e) { if (webBrowser1.Document == null) { //imagefield2.x=14&imagefield2.y=13&username=haolizi&password=19850222haolizi string htmlTemplate = "<html><body>这个页面有脚本直接检测鼠标单击的位置{0}</body></html>"; string blogText = "<script>window.document.body.onclick=function(){alert('鼠标单击的坐标位置是: X:' window.event.clientX ',Y:' window.event.clientY);}</script>"; //blogText = "<script>function mousePosition(ev){ if(ev.pageX || ev.pageY){ return {x:ev.pageX, y:ev.pageY}; } return { x:ev.clientX document.body.scrollLeft - document.body.clientLeft, y:ev.clientY document.body.scrollTop - document.body.clientTop }; } function mouseMove(ev){ ev = ev || window.event; var mousePos = mousePosition(ev); alert('X:' mousePos.x ',Y:' mousePos.y);} document.body.onclick =function(){ mouseMove();} </script>"; string html = htmlTemplate.Replace("{0}", blogText); webBrowser1.Navigate("about:blank"); while (webBrowser1.ReadyState != WebBrowserReadyState.Complete) { Application.DoEvents(); } webBrowser1.Document.Write(html);//这里有问题,明天处理。 webBrowser1.Refresh();//不刷新一下,Iframe显示不出来。 } //this.webBrowser1.Visible = false; } [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = false)] static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam); [DllImport("user32.dll", SetLastError = true)] static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd); [DllImport("user32.dll", CharSet = CharSet.Auto)] static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount); public void MoNiMouseClick() { int x = 100; // X coordinate of the click int y = 280; // Y coordinate of the click IntPtr handle = webBrowser1.Handle; StringBuilder className = new StringBuilder(100); while (className.ToString() != "Internet Explorer_Server") // The class control for the browser { handle = GetWindow(handle, 5); // Get a handle to the child window GetClassName(handle, className, className.Capacity); } IntPtr lParam = (IntPtr)((y << 16) | x); // The coordinates IntPtr wParam = IntPtr.Zero; // Additional parameters for the click (e.g. Ctrl) const uint downCode = 0x201; // Left click down code const uint upCode = 0x202; // Left click up code SendMessage(handle, downCode, wParam, lParam); // Mouse button down SendMessage(handle, upCode, wParam, lParam); // Mouse button up //SendMessage(handle, upCode, wParam, lParam); // Mouse button up } } }