转自http://www.cnblogs.com/jasondan/archive/2011/04/06/2095984.html
.NET WinForm获取窗口句柄很方便,this.Handle搞定。
WPF就有些麻烦了,获取方法如下:
引入命名空间:using System.Windows.Interop;
获取方法:new WindowInteropHelper(this).Handle
时间: 2024-11-02 01:33:32
转自http://www.cnblogs.com/jasondan/archive/2011/04/06/2095984.html
.NET WinForm获取窗口句柄很方便,this.Handle搞定。
WPF就有些麻烦了,获取方法如下:
引入命名空间:using System.Windows.Interop;
获取方法:new WindowInteropHelper(this).Handle