Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Persistence Test/WinFormsUI/Docking/Helpers/Win32Helper.cs @ 4498

Last change on this file since 4498 was 2134, checked in by gkronber, 15 years ago

Added up to date source of Weifen Luo dock panel suit in a separate project (and added strong name key). Removed binary versions of Weifen Luo dock panel suite and references to it. #687 (Update AdvancedOptimizationFrontend to use more recent version of Weifen Luo Docking library)

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.