Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个中央小部件,周围有几个文档小部件。当我隐藏它时,文档会调整大小以填充空间但是,当我显示中央小部件时,它会以其默认大小显示。我希望能够像隐藏之前一样调整大小和位置。
在隐藏之前做这样的事情:
QSize storedSize = mainwindow->getCentralWidget->size();
(假设mainwindow是一个* QMainWindow包含您正在谈论的中央小部件)
mainwindow
* QMainWindow
当您想将其调整回旧尺寸时:
mainwindow->getCentralWidget->resize(storedSize);