获得.net控件的windows句柄 获得.net控件的windows句柄的方法
人气:0想了解获得.net控件的windows句柄的方法的相关内容吗,在本文为您仔细讲解获得.net控件的windows句柄的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:.net,windows,句柄,下面大家一起来学习吧。
复制代码 代码如下:
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;
}
}
加载全部内容