首页 > 代码库 > QT中的坐标系统(狄泰QT视频)
QT中的坐标系统(狄泰QT视频)
#include <QtGui/QApplication> #include <QPushButton> #include <QDebug> #include "MainWindow.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); Widget w; QPushButton b(&w); // 生成 QPushButton对象, 其父组件为 QWidget QPushButton b1(&w); b.setText("Button"); // 设置显示的字符串 b.move(10, 10); // 移动到坐标 (10, 10) b.resize(100, 50); // 设置大小 width = 100, height = 25 b1.setText("Button"); // 设置显示的字符串 b1.move(120, 10); // 移动到坐标 (120, 10) b1.resize(100, 50); // 设置大小 width = 100, height = 25 w.resize(100, 100); w.move(120, 120); w.show(); qDebug()<<"QWidget:"; qDebug()<<w.x(); qDebug()<<w.y(); qDebug()<<w.width(); qDebug()<<w.height(); qDebug()<<"QWidget::geometry()"; qDebug()<<w.geometry().x(); qDebug()<<w.geometry().y(); qDebug()<<w.geometry().width(); qDebug()<<w.geometry().height(); qDebug()<<"QWidget::frameGeometry()"; qDebug()<<w.frameGeometry().x(); qDebug()<<w.frameGeometry().y(); qDebug()<<w.frameGeometry().width(); qDebug()<<w.frameGeometry().height(); return a.exec(); }
QT中的坐标系统(狄泰QT视频)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。