it feels good to me! -Thoys git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@26 3f4676ac-adda-40fd-8265-58d1435b1672
19 lines
380 B
C#
19 lines
380 B
C#
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LSLEditor.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);
|
|
}
|
|
}
|
|
}
|