用vb.net怎么样能得到一个应用程序窗口的句柄,并将窗口最大化

前端之家收集整理的这篇文章主要介绍了用vb.net怎么样能得到一个应用程序窗口的句柄,并将窗口最大化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

用API+Process: Declare Function ShowWindow Lib "user32 " Alias "ShowWindow " (ByVal hwnd As Integer,ByVal nCmdShow As Integer) As Integer 运行时用Process.getProcessById或Process.GetProcessByName来取得一个进程,用Process的GetMainWindowHandle取得句柄,然后ShowWindow(Process.GetProcessByName( "... ").GetMainWindowHandle.toint32,1)可以还原后显示窗口,要最大化,用VB6查SW_SHOWMAXIMIZED(我的VB6坏了)

原文链接:https://www.f2er.com/vb/261464.html

猜你在找的VB相关文章