Win32Helper.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:0k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. namespace WeifenLuo.WinFormsUI.Docking
  5. {
  6. internal static class Win32Helper
  7. {
  8. public static Control ControlAtPoint(Point pt)
  9. {
  10. return Control.FromChildHandle(NativeMethods.WindowFromPoint(pt));
  11. }
  12. public static uint MakeLong(int low, int high)
  13. {
  14. return (uint)((high << 16) + low);
  15. }
  16. }
  17. }