SetForegroundWindow
函数原型:BOOL SetForegroundWindow(HWND hWnd)
参数:
hWnd , 将要设置前台的窗口句柄..
返回值:
如果窗口设入了前台,返回值为非零;
如果窗口未被设入前台,返回值为零。
备注:前台窗口是z序顶部的窗口,是用户的工作窗口。在一个多任务优先抢占环境中,应让用户控制前台窗口。
头文件:winuser.h;
库文件:user32.lib。
VB形式声明
Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Long) As Long
C#形式声明
[DllImport("user32")]
static extern int SetForegroundWindow(IntPtr hwnd);
签名:GreenLeaf1976