How to check if window is quot;Always on topquot;?(如何检查窗口是否“始终在顶部?)
问题描述
在我有用的热键程序中,我有一个全局热键,它通过调用
In my useful hotkeys program, i have a global hotkey which sets your current foreground window to be Topmost/Not topmost by calling
SetWindowPos(hwnd, HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
SetWindowPos(hwnd, HWND_NOTOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
目前我必须有两个单独的热键,Win+Z 将窗口设置为 TOPMOST 和 Win+X 将窗口设置为 NOTOPMOST.
at the moment i have to have two separate hotkeys, Win+Z to set window to TOPMOST anjd Win+X to set window to NOTOPMOST.
我在 MSDN 中找不到可以让您检查 windows z 顺序的函数.我希望有类似 GetWindowOrder 的东西,但没有.我也试过像这样检查 windows ex 标志:
I can't find a function in MSDN which lets you check the windows z order.. i was hoping for something like GetWindowOrder, but there isn't. I also tried checking the windows ex flags like so:
dwExStyles & WS_EX_TOPMOST
但似乎标志从未改变,它只是告诉窗口在第一次创建时将自己设置为最顶层.
but it seems that flag isn't never changed, it just tells the window to set itself topmost when its first created.
有没有检查这个的功能?
Is there a function to check this?
推荐答案
我认为你可以这样做:
DWORD dwExStyle = ::GetWindowLong(m_hWnd, GWL_EXSTYLE);
if ((dwExStyle & WS_EX_TOPMOST) != 0)
{
// do stuff
}
这是 MSDN 链接 - http://msdn.microsoft.com/en-us/library/ms633584(VS.85).aspx
Here's the MSDN link - http://msdn.microsoft.com/en-us/library/ms633584(VS.85).aspx
这里是扩展样式的 MSDN 链接 - http://msdn.microsoft.com/en-us/library/ff700543(v=VS.85).aspx - topmost 目前被列为待定":)
And here's the MSDN link to the extended styles - http://msdn.microsoft.com/en-us/library/ff700543(v=VS.85).aspx - topmost is currently listed as "TBD" :)
这篇关于如何检查窗口是否“始终在顶部"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检查窗口是否“始终在顶部"?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01