首页 > 编程 > C# > 正文

获得.net控件的windows句柄的方法

2020-01-24 03:28:35
字体:
来源:转载
供稿:网友

复制代码 代码如下:

class WinAPI
{
  [DllImport("coredll.dll")]
  private static extern IntPtr SetCapture(IntPtr hWnd);

  [DllImport("coredll.dll")]
  private static extern IntPtr GetCapture();

 

  public static IntPtr GetHWnd(Control ctrl)
  {
    IntPtr hOldWnd = GetCapture();

    ctrl.Capture = true;

    IntPtr hWnd = GetCapture();

    ctrl.Capture = false;

    SetCapture(hOldWnd);

    return hWnd;
  }
}

    

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表