如何在WPF 应用中获取窗体或控件的句柄

窗体:
IntPtr hwnd = new WindowInteropHelper(this).Handle;


控件:
IntPtr hwnd = ((HwndSource)PresentationSource.FromVisual(uielement)).Handle;

posted @ 2012-12-26 17:06  Gene Li  阅读(2650)  评论(0编辑  收藏  举报