Qt中怎么控制主窗口在屏幕上的显示位置

 我来答
350740378
2017-05-03 · TA获得超过187个赞
知道小有建树答主
回答量:223
采纳率:0%
帮助的人:104万
展开全部
void MainWindow::onBtnMenuMaxClicked(bool)
{
QRect deskTopRect = qApp->desktop()->availableGeometry();

if (max==true) {
int allw = deskTopRect.width();
int allh = deskTopRect.height();
int unitw=allw/4;
int unith=allh/4;

this->resize(unitw*2,unith*2);
this->move(unitw,unith);
ui->pushButton_max->setToolTip(tr("最大化"));
}
if (max==false)
{
qDebug()<<"dataRecvSend rectApp= "<<deskTopRect;
this->setGeometry(deskTopRect);
ui->pushButton_max->setToolTip(tr("还原"));
}
max = !max;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
aijiangaa111
2014-11-04 · TA获得超过995个赞
知道小有建树答主
回答量:430
采纳率:87%
帮助的人:116万
展开全部
QWidget::move(int ax, int ay)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
亲情爱情友情
2017-02-25
知道答主
回答量:4
采纳率:0%
帮助的人:3016
展开全部
#include<QWidget>
QWidget w;
w.setGeometry(x,y,length,hight);
//w.move(x,y)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式