简体   繁体   中英

Borderless window in Qt on Windows which supports native features: aero snap, DWM resize and minimization

I'm trying to create a borderless window in Qt on Windows which supports native features: aero snap, DWM resize and minimization, shake, etc. Like Office 2013 or Visual Studio 2012. But they are written in wpf. There are a lot of examples in wpf and pure WinApi, but I wasn't able to find any Qt example.

Recently I've found Blizzard's Battle.net App( screenshot ). They are using QT 4.8.5 and their main window looks and behaves exactly as I want in my app.

Does anyone know how to do that?

Thanks for your help.

I've found a workaround for this problem.

Instead of using Qt main window, i've created a simple WinAPI borderless window, like in this SO discussion . Then i added QWinWidget from QtWinMigrate project, and filled window with it.

As result, main window and resizable edges are handled by WinAPI, and everything inside main window is handled by QWinWidget. And with QWinWidget you can create Qt gui like in any other Qt app.

Here is a small example project on GitHub.

Perhaps this might help you, Windows specific Qt classes WinExtras

http://qt-project.org/doc/qt-5/qtwin.html

http://qt-project.org/doc/qt-5/qtwinextras-module.html

Besides you can use QT Quick 2.0 to design UI similar to WPF

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM