如何激活一个窗体并使之弹到最前端

 我来答
己学好4
2016-04-01 · TA获得超过1.5万个赞
知道大有可为答主
回答量:1.1万
采纳率:91%
帮助的人:5054万
展开全部
先ShowWindow
再BringWindowToTop
然后SetFoucus

Write by :lu098/2000下,有个公开的函数SetForegroundWindow,用于切换前台窗口.但是事实上,SetForegroundWindow并不能用于和其他进程的窗口协同工作,通常情况下SetForegroundWindow会调用FlashWindowEx来闪烁目标窗口,代表已经切换了窗口,但是这不是我们需要的.网络上有一些顶尖高手使用修改窗口切换的系统规则后,用SetForegroundWindow切换到其他进程的窗口,但是现在,我们有了UNDOCUMENTED的另外一个USER32函数:SwitchToThisWindow(...);来完成这项工作.那么原型是怎么的呢? 下面就来揭晓了......void WINAPI SwitchToThisWindow (HWND hWnd, // Handle to the window that should be activatedBOOL bRestore // Restore the window if it is minimized);由于没有原型和库,我们在使用时通常用动态联接法.typedef void (WINAPI *PROCSWITCHTOTHISWINDOW) (HWND, BOOL);PROCSWITCHTOTHISWINDOW SwitchToThisWindow;HMODULE hUser32 = GetModuleHandle("user32");SwitchToThisWindow = (PROCSWITCHTOTHISWINDOW)GetProcAddress(hUser32, "SwitchToThisWindow");{ Delphi Code:procedure SwitchToThisWindow(hWnd:HWND;bRestore:Boolean);stdcall;external 'user32.dll';}这样,我们的任务就完成了.*******************************从Win98开始,微软更改了系统代码,一般的SetForegroundWindow只能将状态栏中应用按钮闪烁,并没有将应用调到最前面。请使用下列函数:function ForceForegroundWindow(hwnd: THandle): boolean;constSPI_GETFOREGROUNDLOCKTIMEOUT = $2000;SPI_SETFOREGROUNDLOCKTIMEOUT = $2001;vartimeout: DWORD;beginif ((Win32Platform = VER_PLATFORM_WIN32_NT) and (Win32MajorVersion> 4)) or((Win32Platform = VER_PLATFORM_WIN32_WINDOWS) and((Win32MajorVersion > 4) or ((Win32MajorVersion = 4) and(Win32MinorVersion > 0)))) then beginSystemParametersInfo(SPI_GETFOREGROUNDLOCKTIMEOUT, 0, @timeout,0);SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,TObject(0), SPIF_SENDCHANGE);Result := SetForegroundWindow(hWnd);SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,TObject(timeout), SPIF_SENDCHANGE);endelseResult := SetForegroundWindow(hWnd);end; { ForceForegroundWindow }不过最后SystemParametersInfo恢复参数:SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,Pointer(timeout), SPIF_SENDCHANGE);如果不去掉,在WIN2000下不灵***********************发现一个2000下面的方法,试一下function AllowSetForegroundWindow( dwProcessId:DWORD): BOOL; stdcall;implementationfunction AllowSetForegroundWindow; external 'user32.dll' name 'AllowSetForegroundWindow';****************function ForceForegroundWindow(hWnd: THandle): BOOL;varhCurWnd: THandle;beginhCurWnd := GetForegroundWindow;AttachThreadInput(GetWindowThreadProcessId(hCurWnd, nil), GetCurrentThreadId, True);Result := SetForegroundWindow(hWnd);AttachThreadInput(GetWindowThreadProcessId(hCurWnd, nil), GetCurrentThreadId, False);end;*********************procedure ForceForegroundWindow(hwnd: THandle);varhlp: TForm;beginhlp := TForm.Create(nil);tryhlp.BorderStyle := bsNone;hlp.SetBounds(0, 0, 1, 1);hlp.FormStyle := fsStayOnTop;hlp.Show;mouse_event(MOUSEEVENTF_ABSOLUTE or MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);mouse_event(MOUSEEVENTF_ABSOLUTE or MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);SetForegroundWindow(hwnd);finallyhlp.Free;end;end;---------------------------------------发现一个2000下面的方法,试一下function AllowSetForegroundWindow( dwProcessId:DWORD): BOOL; stdcall;function AllowSetForegroundWindow; external 'user32.dll' name 'AllowSetForegroundWindow';

我觉得问题是你这个窗口最小化了,ShowWindow加上SW_RESTORE参数即可。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式