如何將從窗體/控件的Handle屬性獲取的句柄轉換爲IWin32Window ^?將IntPtr窗口句柄轉換爲IWin32Window^
回答
(這可以讓你控制的對象,它實現了IWin32Window接口。)
EG。
IntPtr myWindowHandle = IntPtr(someVal);
IWin32Window^ w = Control::FromHandle(myWindowHandle);
請注意,這依賴於「從窗體/控件的Handle屬性獲取的」句柄。你不能在任意的Win32窗口句柄中使用這種技術。
有一個更簡單的方法,直接由.NET框架支持,而無需創建自己的自定義類。您可以使用任意任意窗口句柄。
鑑於ptrWindowHandle類型的IntPtr的:
using System.Windows.Forms;
NativeWindow nativeWindow = new NativeWindow();
nativeWindow.AssignHandle(ptrWindowHandle);
System.Windows.Forms.NativeWindow實現IWin32Window接口。
你也可以使用靜態'NativeWindow.FromHandle(ptrWindowHandle);' – 2013-01-24 16:23:22
@MattSmith我發現它必須被分配。除非事先使用AssignHandle,否則FromHandle不適用於我。例如,這可以工作:'NativeWindow nativeWindow = new NativeWindow(); nativeWindow.AssignHandle(GetConsoleWindow()); box.ShowDialog(NativeWindow.FromHandle(GetConsoleWindow()));(甚至是'box.ShowDialog(nativeWindow);')...但是這個沒有賦值的單行不包含:'box.ShowDialog(NativeWindow。 FromHandle(GetConsoleWindow()));' – Jay 2017-12-14 07:31:16
- 1. 從Selenium webdriver的當前窗口獲取窗口句柄(IntPtr)GUID
- 2. 將FD轉換爲句柄
- 3. 將wpf文本框轉換爲iwin32window(winform)
- 4. 將IntPtr轉換爲CWPSTRUCT
- 5. 將筆轉換爲IntPtr
- 6. 將HWND轉換爲IntPtr(CLI)
- 7. 從DataGridViewTextBoxCell獲取句柄IntPtr?
- 8. 什麼是句柄? IntPtr
- 9. 將ProcessID轉換爲進程句柄
- 10. 窗口句柄和窗口尺寸
- 11. 將窗口句柄傳遞給變量
- 12. Python pyautogui窗口句柄
- 13. 窗口句柄C#/。NET
- 14. 窗口的主句柄
- 15. 檢索Delphi窗口句柄
- 16. 得到窗口的句柄
- 17. 驗證Win32窗口句柄
- 18. GLUT本機窗口句柄
- 19. SendMessage函數窗口句柄
- 20. 獲取窗口句柄
- 21. MFC中的窗口句柄?
- 22. 用NSImage拖動窗口作爲句柄?
- 23. 改變一個窗口的背景色,給定一個IntPtr句柄
- 24. 如何將IntPtr轉換爲流?
- 25. 將類類型對象轉換爲Intptr
- 26. 在C#中將IntPtr轉換爲int *?
- 27. 將字符串轉換爲IntPtr
- 28. 如何將AutomationElement.NativeWindowHandle轉換爲IntPtr
- 29. 如何將IntPtr/Int轉換爲Socket?
- 30. 如何將位圖轉換爲intptr C#
James,我在你的答案中編輯了一個資格證書,因爲來自對IntPtr和IWin32Window進行更全面搜索的人可能只會閱讀問題標題而不理解問題細節中的約束條件。希望這沒關係。 – itowlson 2010-03-20 04:21:21
不,這是一個很好的編輯。你可能從幾個小時的頭腦中想起了爲什麼他不能奇蹟般地從原始HWND創建一個Control/IWin32Window對象,從而挽救了一個倒黴的未來程序員。 :) – 2010-03-20 07:54:28