Last change
on this file since 2227 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 | |
---|
1 | using System;
|
---|
2 | using System.Drawing;
|
---|
3 | using System.Windows.Forms;
|
---|
4 |
|
---|
5 | namespace 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.