Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/Helpers/Win32Helper.cs @ 2645

Last change on this file since 2645 was 2645, checked in by mkommend, 14 years ago

extracted external libraries and adapted dependent plugins (ticket #837)

File size: 391 bytes
Line 
1using System;
2using System.Drawing;
3using System.Windows.Forms;
4
5namespace WeifenLuo.WinFormsUI.Docking
6{
7  internal static class Win32Helper
8  {
9    public static Control ControlAtPoint(Point pt)
10    {
11      return Control.FromChildHandle(NativeMethods.WindowFromPoint(pt));
12    }
13
14    public static uint MakeLong(int low, int high)
15    {
16      return (uint)((high << 16) + low);
17    }
18  }
19}
Note: See TracBrowser for help on using the repository browser.