QT设置界面相关问题

1,如何设置窗口居中:

#include

//.......
QDesktopWidget* desktop = QApplication::desktop(); // =qApp->desktop();也可以
move((desktop->width() - this ->width())/2, (desktop->height() - this ->height())/2);
//.......

2,设置窗口的大小

使用resize(int width int height);

其中width可以为数值,也可以为int width=desktop->width();带入resize时可以写成width/2等;

height同理。

你可能感兴趣的:(QT设置界面相关问题)