在VB中,可以使用以下方法來獲取窗體的句柄:
Dim hWnd As IntPtr = Me.Handle
Imports System.Runtime.InteropServices
然后使用以下代碼來調(diào)用FindWindow函數(shù):
Dim windowTitle As String = "窗體標(biāo)題" '替換為實(shí)際窗體的標(biāo)題
Dim hWnd As IntPtr = FindWindow(Nothing, windowTitle)
<DllImport("user32.dll", SetLastError:=True)>
Private Shared Function FindWindow(ByVal lpClassName As String, ByVal lpWindowName As String) As IntPtr
End Function
在上面的代碼中,通過傳遞窗體的標(biāo)題給FindWindow函數(shù),可以獲取指定窗體的句柄。
請(qǐng)注意,第二種方法需要導(dǎo)入Win32 API函數(shù)聲明,并且只適用于在當(dāng)前應(yīng)用程序之外的其他窗體。如果是在同一個(gè)應(yīng)用程序中獲取窗體的句柄,建議使用第一種方法。