一些窗口API函数,比如SetForegroundWindow,SwitchToThisWindow

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一些窗口API函数,比如SetForegroundWindow,SwitchToThisWindow相关的知识,希望对你有一定的参考价值。

SetForegroundWindow
SwitchToThisWindow

procedure TApplication.BringToFront;
var
TopWindow: HWnd;
begin
if Handle <> 0 then
begin
TopWindow := GetLastActivePopup(Handle);
if (TopWindow <> 0) and (TopWindow <> Handle) and
IsWindowVisible(TopWindow) and IsWindowEnabled(TopWindow) then
SetForegroundWindow(TopWindow);
end;
end;

 

以上是关于一些窗口API函数,比如SetForegroundWindow,SwitchToThisWindow的主要内容,如果未能解决你的问题,请参考以下文章

Windows API一日一练 17 DialogBox和DialogBoxParam函数

Windows API一日一练 41 FindWindowEx函数

使用 C# 将鼠标单击发送到任务栏中的按钮

Windows API一日一练 38 SetWindowPos函数

Windows API一日一练 37 MoveWindow函数

易语言里的API函数是啥意思?请说得通俗易懂……谢谢!*