我想在屏幕右侧显示我的主窗口。
我使用这段代码:
QRect r = this->frameGeometry();
r.moveRight(QDesktopWidget::availableGeometry());
this->move(r.topRight());
我收到这个错误:
错误:不能在没有对象的情况下调用成员函数 'const QRect QDesktopWidget::availableGeometry(int) const'
如果我使用 1024 代替QDesktopWidget::availableGeometry()
它可以工作......但我不想静态初始化它......
如何为不同的屏幕尺寸动态重新定位窗口?