Qt中如何获得一个主窗口中的一个QWidget相对于QMainWindow的坐标?

2024-11-29 20:00:26
推荐回答(1个)
回答1:

QPoint QWidget::Pos() const

This property holds the position of the widget within its parent widget.

----------------------------------无比华丽的分割线------------------------------------------
QWidget * QWidget::parentWidget () const

Returns the parent of this widget, or 0 if it does not have any parent widget.

——Qt Assistant

像个链表,然后QPoint自己已经重载了加法运算符~
然后你会了么?