Projet

Général

Profil

Centrer une fenêtre

Archivage d'un mail de jean-louis:

//On centre la fenetre sur l'ecran de l'utilisateur
QDesktopWidget *desktop = QApplication::desktop();
QRect screenRect = desktop->availableGeometry(this);
int desktop_width = screenRect.width();
int desktop_height = screenRect.height();
this->move((desktop_width-this->width())/2, (desktop_height-this->height())/2);
Redmine Appliance - Powered by TurnKey Linux