Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

WindowFromPoint (user32)
 
.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern IntPtr WindowFromPoint(System.Drawing.Point p);
static extern IntPtr WindowFromPoint(Point p);

VB.NET Signature:

<DllImport("user32.dll")> _
Private Shared Function WindowFromPoint(ByVal p As Point) As IntPtr
End Function

Oxygene.NET Signature:

[DllImport("user32.dll")]
class method WindowFromPoint(aPoint: System.Drawing.Point): IntPtr; external;

Notes:

The WindowFromPoint function retrieves a handle to the window that contains the specified point.

Make sure not to use System.Windows.Point.

Tips & Tricks:

Please add some!

Sample Code:

[DllImport("user32.dll")]
static extern bool GetCursorPos(out Point lpPoint);

[DllImport("user32.dll")]
static extern bool SetWindowText(IntPtr hWnd, string lpString);

Point p;
if (GetCursorPos(out p))
{
   IntPtr hWnd = WindowFromPoint(p);
   if (hWnd != IntPtr.Zero) SetWindowText(hWnd, "Window Found");
}

Alternative Managed API:

Do you know one? Please contribute it!

Tips & Tricks:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
Documentation

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/windows/windowreference/windowfunctions/windowfrompoint.asp

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions