Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to Center a Window on the Screen: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
= How to center a window on the screen = | = How to center a window on the screen = | ||
<code> | <code> | ||
#include <QStyle> | |||
#include <QDesktopWidget> | |||
window- | window->setGeometry( | ||
QStyle::alignedRect( | |||
Qt::LeftToRight, | |||
Qt::AlignCenter, | |||
window->size(), | |||
qApp->desktop()->availableGeometry() | |||
)); | |||
</code> |