02 手写QT

02 手写QT,第1张

02 手写QT

main.cpp

#include 
#include  //窗口空间基类
#include 

int main(int argc , char **argv)
{
    QApplication app(argc , argv);

    QWidget w;
    w.setWindowTitle("hello world"); //设置标题


//    QPushButton b;
//    b.setText("^_^"); //给按钮设置内容
//    b.show();

    
    QPushButton b;
    b.setText("^_^"); //给按钮设置内容
    b.setParent(&w); //指定父对象
    b.move(100 , 100); //移动坐标

    QPushButton b1(&w); //通过构造函数传参指定父对象
    b1.setText("abc");

    w.show();
    app.exec();
    return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5658515.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存