欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-12 15:31:04
复制代码 代码如下:class winapi{  [dllimport("coredll.dll")]  private static extern intptr setc...

复制代码 代码如下:

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;
  }
}

    

上一篇:

下一篇: