WinAPI 中没有客户区的窗口
在这些屏幕截图中,我们可以看到不同应用程序中不寻常的窗口框架:
- 其登录窗口框架(不是客户端区域)上的 QIP 徽标 - http://postimage.org/image/2fdjg0h44/
- Windows 7 资源管理器窗口框架上的按钮(后退/下一步)和地址字段 - http://postimage.org/image/2fdrpp7l0/
- 选项卡位于窗口框架上
在 Google Chrome 中, 这些窗口客户区被调整大小或/和替换。当然,它仅适用于 Windows Aero 主题。
我想调整窗口的大小并替换窗口的客户区域,或者如果可能的话根本隐藏它。 (C/C++ 和 Win API)。我该怎么做呢?
On these screenshots we can see unordinary window frame in different applications:
- QIP logo on its login window frame (not client area) - http://postimage.org/image/2fdjg0h44/
- Buttons (back/next) and address field on the Windows 7 explorer window frame - http://postimage.org/image/2fdrpp7l0/
- In Google Chrome tabs take place on the window frame
In all these windows client area is resized or/and replaced. Of course, it works with Windows Aero theme only.
I want to resize and replace client area of my window or hide it at all if it is possible. (C/C++ and Win API). How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该效果是使用 DwmExtendFrameIntoClientArea 函数来实现的。
That effect is accomplished using the DwmExtendFrameIntoClientArea function.
您希望调整表单的非客户区域的大小: 控件和桌面窗口管理器
You are looking to resize the nonclient area of the form: Controls and the Desktop Window Manager