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; }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)