P
PROSE
Unregistered / Unconfirmed
GUEST, unregistred user!
我在From内放了一个WebBrowser控件<br>使用getcursorpos可以得到屏幕坐标,但是到了Webbrowser内就得不到了,只能得到整个控件的边缘坐标,<br>代码如下:<br>procedure TMain_Form.Panel1MouseMove(Sender: TObject; Shift: TShiftState;<br> X, Y: Integer);<br><br> var P :TPoint ;<br>begin<br><br> getcursorpos(p) ;<br> Label5.Caption :=inttostr(p.x) +' , ' + inttostr(p.y) ;<br>end;<br>我想得到Webbrowser上鼠标点击的具体坐标,如何做??