You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
358 B
C#
20 lines
358 B
C#
7 months ago
|
using System;
|
||
|
using System.Drawing;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace Mesnac.Docking
|
||
|
{
|
||
|
internal static class Win32Helper
|
||
|
{
|
||
|
public static Control ControlAtPoint(Point pt)
|
||
|
{
|
||
|
return Control.FromChildHandle(NativeMethods.WindowFromPoint(pt));
|
||
|
}
|
||
|
|
||
|
public static uint MakeLong(int low, int high)
|
||
|
{
|
||
|
return (uint)((high << 16) + low);
|
||
|
}
|
||
|
}
|
||
|
}
|