QResizeEvent Class

QResizeEvent 类包含调整大小事件的事件参数。更多

头文件: #include <QResizeEvent>
CMake: find_package(Qt6 REQUIRED COMPONENTS Gui)
target_link_libraries(mytarget PRIVATE Qt6::Gui)
qmake: QT += gui
继承: QEvent

公共函数

QResizeEvent(const QSize &size, const QSize &oldSize)
const QSize &oldSize() const
const QSize &size() const

详细说明

调整大小事件发送给已调整大小的部件。

事件处理程序QWidget::resizeEvent() 接收调整大小事件。

另请参阅 QWidget::resize() 和QWidget::setGeometry()。

成员函数文档

QResizeEvent::QResizeEvent(const QSize &size, const QSize &oldSize)

构造一个调整大小事件,其中包含新的和旧的 widget 大小,分别为sizeoldSize

const QSize &QResizeEvent::oldSize() const

返回 widget 的旧尺寸。

const QSize &QResizeEvent::size() const

返回 widget 的新尺寸。这与QWidget::size() 相同。

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.